2018-10-18 19:46:43 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>EpicAnchors</artifactId>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-05-04 03:51:22 +02:00
|
|
|
<version>maven-version-number</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
<build>
|
2019-06-08 22:24:44 +02:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<finalName>EpicAnchors-${project.version}</finalName>
|
2018-10-18 19:46:43 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-06-08 22:24:44 +02:00
|
|
|
<version>3.8.0</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-05-03 07:44:58 +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>
|
|
|
|
<include>com.songoda:songodaupdater</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>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-10-18 19:46:43 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
2019-02-04 00:51:00 +01:00
|
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
2018-10-18 19:46:43 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2019-06-08 22:24:44 +02:00
|
|
|
<version>1.14.1</version>
|
2019-05-03 07:44:58 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>songodaupdater</artifactId>
|
|
|
|
<version>1</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-02-04 00:51:00 +01:00
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>1.7.1</version>
|
2019-06-08 22:24:44 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
2019-06-08 22:54:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>epicspawners</artifactId>
|
|
|
|
<version>6-pre4</version>
|
|
|
|
</dependency>
|
2019-06-08 23:55:14 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
|
|
<artifactId>holographicdisplays-api</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
</dependency>
|
2019-07-22 02:23:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.tnemc</groupId>
|
|
|
|
<artifactId>Reserve</artifactId>
|
|
|
|
<version>0.1.3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-07-22 02:49:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>playerpoints</artifactId>
|
|
|
|
<version>2.1.4</version>
|
|
|
|
</dependency>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|