EpicHeads/pom.xml

114 lines
4.5 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>
2021-12-22 19:38:19 +01:00
<version>3.3.0</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-12-19 19:08:20 +01:00
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
2019-05-04 11:05:54 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-13 21:04:55 +02:00
<version>3.3.0-SNAPSHOT</version>
2019-05-04 11:05:54 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
2019-05-04 11:05:54 +02:00
<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>
2021-06-13 21:04:55 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<repositories>
2020-03-16 18:35:34 +01:00
<repository>
<id>public</id>
2020-09-22 05:57:43 +02:00
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 18:35:34 +01:00
</repository>
2019-07-20 17:23:02 +02:00
<repository>
2019-09-09 16:55:10 +02:00
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2019-07-20 17:23:02 +02:00
</repository>
</repositories>
<dependencies>
<dependency>
2018-10-18 22:04:56 +02:00
<groupId>org.spigotmc</groupId>
2019-09-23 18:47:17 +02:00
<artifactId>spigot</artifactId>
2021-12-22 19:37:56 +01:00
<version>1.18</version>
2019-09-09 16:55:10 +02:00
<scope>provided</scope>
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>
2021-12-22 19:37:56 +01:00
<version>2.6.9</version>
2019-09-08 04:38:34 +02:00
<scope>compile</scope>
2019-07-20 17:23:02 +02:00
</dependency>
</dependencies>
2018-10-18 22:04:56 +02:00
</project>