EpicHoppers/pom.xml

145 lines
5.6 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0">
2018-11-15 22:53:39 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicHoppers</artifactId>
2020-01-16 23:32:28 +01:00
<modelVersion>4.0.0</modelVersion>
2020-02-11 12:35:13 +01:00
<version>4.4.4</version>
2018-11-01 05:40:01 +01:00
<build>
2018-11-15 22:53:39 +01:00
<defaultGoal>clean install</defaultGoal>
<finalName>EpicHoppers-${project.version}</finalName>
2018-11-01 05:40:01 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2018-11-15 22:53:39 +01:00
<version>3.8.0</version>
2018-11-01 05:40:01 +01:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2019-12-21 21:09:29 +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>
<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-10-05 22:02:31 +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-10-05 22:02:31 +02:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epichoppers.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2018-11-01 05:40:01 +01:00
</plugins>
</build>
<repositories>
<repository>
<id>private</id>
2019-08-25 23:41:43 +02:00
<url>https://repo.songoda.com/artifactory/private/</url>
2018-11-01 05:40:01 +01:00
</repository>
2019-07-20 15:24:42 +02:00
<repository>
<id>reserve-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
</repository>
2019-08-25 23:41:43 +02:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2018-11-01 05:40:01 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
2019-08-25 23:50:32 +02:00
<artifactId>spigot</artifactId>
2019-12-11 22:19:27 +01:00
<version>1.15</version>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
2019-10-05 22:02:31 +02:00
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.arcaniax</groupId>
<artifactId>liquidtanks</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
2019-09-10 22:21:52 +02:00
<artifactId>abledskyblock</artifactId>
<version>79.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
2019-10-03 15:58:58 +02:00
<artifactId>EpicFarming</artifactId>
<version>2.3.1</version>
<scope>provided</scope>
</dependency>
2019-06-05 00:39:13 +02:00
<dependency>
<groupId>net.brcdev</groupId>
<artifactId>ShopGUIPlus</artifactId>
2019-06-05 00:41:54 +02:00
<version>1.19.5</version>
2019-06-05 00:39:13 +02:00
</dependency>
2019-07-20 15:24:42 +02:00
<dependency>
2019-10-05 22:02:31 +02:00
<groupId>com.songoda</groupId>
<artifactId>UltimateStacker</artifactId>
<version>1.9.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.bgsoftware</groupId>
<artifactId>WildStacker</artifactId>
<version>2-9-0</version>
2019-07-20 15:24:42 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
2018-11-01 05:40:01 +01:00
</project>