EpicFarming/pom.xml

139 lines
4.8 KiB
XML
Raw Normal View History

2021-07-19 13:59:24 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
2018-11-16 01:15:44 +01:00
<groupId>com.songoda</groupId>
2019-09-11 16:41:08 +02:00
<artifactId>EpicFarming</artifactId>
2023-04-13 20:14:52 +02:00
<version>3.3.2</version>
2021-07-19 13:59:24 +02:00
2018-05-06 18:56:17 +02:00
<build>
2018-11-16 01:15:44 +01:00
<defaultGoal>clean install</defaultGoal>
2019-09-11 16:41:08 +02:00
<finalName>EpicFarming-${project.version}</finalName>
2021-07-19 13:59:24 +02:00
2018-05-06 18:56:17 +02:00
<plugins>
<plugin>
2018-10-18 20:52:09 +02:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2018-11-16 01:15:44 +01:00
<version>3.8.0</version>
2021-07-19 13:59:24 +02:00
2018-10-18 20:52:09 +02:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2021-07-19 13:59:24 +02:00
2019-12-07 19:11:25 +01:00
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
2021-07-19 13:59:24 +02:00
2019-12-07 19:11:25 +01:00
<executions>
<execution>
<phase>prepare-package</phase>
2021-07-19 13:59:24 +02:00
2019-12-07 19:11:25 +01:00
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
2021-07-19 13:59:24 +02:00
2019-12-07 19:11:25 +01:00
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
2021-07-19 13:59:24 +02:00
2019-12-07 19:11:25 +01:00
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
2021-07-19 13:59:24 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-07-03 22:24:32 +02:00
<version>3.3.0</version>
2021-07-19 13:59:24 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2021-07-19 13:59:24 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
2021-07-19 13:59:24 +02:00
<artifactSet>
<includes>
<include>com.songoda:SongodaCore</include>
</includes>
</artifactSet>
2021-07-19 13:59:24 +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-07-19 13:59:24 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epicfarming.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2018-05-06 18:56:17 +02:00
</plugins>
</build>
2021-07-19 13:59:24 +02:00
2021-06-13 21:25:41 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2021-07-19 13:59:24 +02:00
2018-05-06 18:56:17 +02:00
<repositories>
2020-03-16 18:33:50 +01:00
<repository>
<id>public</id>
2020-11-03 23:20:47 +01:00
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 18:33:50 +01:00
</repository>
2018-05-06 18:56:17 +02:00
</repositories>
2021-07-19 13:59:24 +02:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2021-12-22 05:33:27 +01:00
<version>1.18</version>
<scope>provided</scope>
</dependency>
2021-07-19 13:59:24 +02:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
2023-04-13 20:14:27 +02:00
<version>2.6.19</version>
<scope>compile</scope>
</dependency>
2021-07-19 13:59:24 +02:00
2020-05-29 18:08:18 +02:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>skyblock</artifactId>
2021-12-22 05:33:27 +01:00
<version>2.3.30</version>
2022-07-03 22:24:32 +02:00
<scope>provided</scope>
2020-05-29 18:08:18 +02:00
</dependency>
</dependencies>
2018-10-18 20:52:09 +02:00
</project>