mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-02 17:00:19 +01:00
66 lines
2.7 KiB
XML
66 lines
2.7 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-dist</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-parent</artifactId>
|
|
<version>0.18-SNAPSHOT</version>
|
|
</parent>
|
|
<build>
|
|
<finalName>${project.artifactId}-${project.version}${buildNo}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>de.erethon.vignette:vignette-dist</include>
|
|
<include>de.erethon.dungeonsxl:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-adapter</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-api</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-bukkit_blockdata</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-bukkit_magicvalues</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-core</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|