EpicHeads/pom.xml

84 lines
3.3 KiB
XML
Raw Normal View History

2018-10-18 22:04:56 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
<groupId>com.songoda</groupId>
2018-10-19 22:32:50 +02:00
<artifactId>EpicHeads</artifactId>
<modelVersion>4.0.0</modelVersion>
2019-05-04 11:05:54 +02:00
<version>maven-version-number</version>
<build>
2019-05-04 11:05:54 +02:00
<defaultGoal>clean install</defaultGoal>
<finalName>EpicHeads-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2019-05-04 11:05:54 +02:00
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2019-05-04 11:05:54 +02:00
<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-08 04:38:34 +02:00
<include>com.songoda:SongodaCore</include>
2019-05-04 11:05:54 +02:00
</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-08 04:38:34 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epicheads.core</shadedPattern>
</relocation>
</relocations>
2019-05-04 11:05:54 +02:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
2018-10-18 22:04:56 +02:00
<id>private</id>
2019-09-08 04:38:34 +02:00
<url>https://repo.songoda.com/artifactory/private/</url>
</repository>
2019-07-20 17:23:02 +02:00
<repository>
<id>reserve-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
</repository>
</repositories>
<dependencies>
<dependency>
2018-10-18 22:04:56 +02:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2019-05-18 06:41:05 +02:00
<version>1.14.1</version>
2018-10-18 22:04:56 +02:00
</dependency>
<dependency>
2019-05-04 11:05:54 +02:00
<groupId>com.songoda</groupId>
2019-09-08 04:38:34 +02:00
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
2019-07-20 17:23:02 +02:00
</dependency>
</dependencies>
2018-10-18 22:04:56 +02:00
</project>