EpicHeads/pom.xml

130 lines
4.6 KiB
XML
Raw Permalink Normal View History

2018-10-18 22:04:56 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0">
2021-12-23 22:34:06 +01:00
<modelVersion>4.0.0</modelVersion>
2018-10-18 22:04:56 +02:00
<groupId>com.songoda</groupId>
2018-10-19 22:32:50 +02:00
<artifactId>EpicHeads</artifactId>
2023-04-13 20:38:10 +02:00
<version>3.4.2</version>
2021-12-23 22:34:06 +01:00
<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>
2021-12-23 22:34:06 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2021-12-23 22:34:06 +01:00
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>
2021-12-23 22:34:06 +01:00
2019-12-19 19:08:20 +01:00
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
2021-12-23 22:34:06 +01:00
2019-12-19 19:08:20 +01:00
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
2021-12-23 22:34:06 +01:00
2019-05-04 11:05:54 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-09-05 22:50:19 +02:00
<version>3.3.0</version>
2021-12-23 22:34:06 +01:00
2019-05-04 11:05:54 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2021-12-23 22:34:06 +01:00
2019-05-04 11:05:54 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
2021-12-23 22:34:06 +01:00
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>
2021-12-23 22:34:06 +01:00
2019-05-04 11:05:54 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
2021-12-23 22:34:06 +01:00
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-12-23 22:34:06 +01:00
<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>
2021-12-23 22:34:06 +01:00
<dependencies>
<dependency>
2018-10-18 22:04:56 +02:00
<groupId>org.spigotmc</groupId>
2022-09-05 22:50:19 +02:00
<artifactId>spigot-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
2019-09-09 16:55:10 +02:00
<scope>provided</scope>
2018-10-18 22:04:56 +02:00
</dependency>
2021-12-23 22:34:06 +01:00
2018-10-18 22:04:56 +02:00
<dependency>
2019-05-04 11:05:54 +02:00
<groupId>com.songoda</groupId>
2019-09-08 04:38:34 +02:00
<artifactId>SongodaCore</artifactId>
2023-04-13 20:37:54 +02:00
<version>2.6.19</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>