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>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>EpicAnchors-API/src/main/java</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<version>3.6.1</version>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<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>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>EpicAnchors-Plugin/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<sourceDirectory>EpicAnchors-Plugin/src/main/java</sourceDirectory>
|
|
|
|
</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-05-03 07:44:58 +02:00
|
|
|
<version>1.14</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>songodaupdater</artifactId>
|
|
|
|
<version>1</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org</groupId>
|
|
|
|
<artifactId>kingdoms</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>13.0.9</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>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.ryanhamshire</groupId>
|
|
|
|
<artifactId>GriefPrevention</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>16.6</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>7.0.0</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<version>7.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com</groupId>
|
|
|
|
<artifactId>plotsquared</artifactId>
|
2019-02-18 16:13:32 +01:00
|
|
|
<version>BREAKING</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.palmergames.bukkit</groupId>
|
|
|
|
<artifactId>towny</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>0.93.0.0</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.wasteofplastic</groupId>
|
|
|
|
<artifactId>askyblock</artifactId>
|
|
|
|
<version>3.0.6.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>us.talabrek</groupId>
|
|
|
|
<artifactId>ultimateskyblock</artifactId>
|
2019-03-14 23:53:28 +01:00
|
|
|
<version>2.7.2</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.markeh</groupId>
|
|
|
|
<artifactId>factionsframework</artifactId>
|
|
|
|
<version>1.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>br.net.fabiozumbi12</groupId>
|
|
|
|
<artifactId>RedProtect</artifactId>
|
|
|
|
<version>7.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>epicspawners</artifactId>
|
2019-06-03 02:33:51 +02:00
|
|
|
<version>6-pre4</version>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|