EpicFurnaces/pom.xml

80 lines
3.2 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0">
2019-01-11 16:30:18 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicFurnaces</artifactId>
<modelVersion>4.0.0</modelVersion>
2020-02-27 04:59:24 +01:00
<version>4.5.6</version>
2019-01-11 16:30:18 +01:00
<build>
<defaultGoal>clean install</defaultGoal>
<finalName>EpicFurnaces-${project.version}</finalName>
2019-01-11 16:30:18 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
2019-09-10 01:27:49 +02:00
<include>com.songoda:SongodaCore</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
2019-09-10 01:27:49 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epicfurnaces.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2019-01-11 16:30:18 +01:00
</plugins>
</build>
<repositories>
<repository>
<id>private</id>
2019-02-18 14:08:11 +01:00
<url>http://repo.songoda.com/artifactory/private/</url>
2019-01-11 16:30:18 +01:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2020-01-24 19:45:25 +01:00
<version>1.15</version>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
2019-09-10 01:27:49 +02:00
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
2019-07-20 16:04:28 +02:00
</dependency>
</dependencies>
2019-01-11 16:30:18 +01:00
</project>