2018-05-06 01:32:21 +02:00
|
|
|
<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>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>UltimateKits</artifactId>
|
2018-05-07 22:23:40 +02:00
|
|
|
<version>1.1.0</version>
|
2018-05-06 01:32:21 +02:00
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<build>
|
|
|
|
<finalName>UltimateKits</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-05-07 18:53:58 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-05-06 01:32:21 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<!--Bukkit Repo-->
|
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<!--Vault Repo-->
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
|
|
|
<!--Songoda Repo-->
|
|
|
|
<repository>
|
|
|
|
<id>songoda-public</id>
|
2018-05-11 19:19:39 +02:00
|
|
|
<url>http://repo.songoda.com/repository/songoda-public/</url>
|
2018-05-06 01:32:21 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>songoda-private</id>
|
2018-05-11 19:19:39 +02:00
|
|
|
<url>http://repo.songoda.com/repository/songoda-private/</url>
|
2018-05-06 01:32:21 +02:00
|
|
|
</repository>
|
|
|
|
<!---Essentials Repo-->
|
|
|
|
<repository>
|
|
|
|
<id>ess-repo</id>
|
|
|
|
<url>http://repo.ess3.net/content/groups/essentials</url>
|
|
|
|
</repository>
|
|
|
|
<!--PlaceHolder API Repo-->
|
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2018-05-07 18:44:35 +02:00
|
|
|
<repository>
|
|
|
|
<id>jcenter</id>
|
|
|
|
<url>http://jcenter.bintray.com</url>
|
|
|
|
</repository>
|
2018-05-06 01:32:21 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--Bukkit API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--Vault API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--Essentials API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.earth2me</groupId>
|
|
|
|
<artifactId>essentials-x</artifactId>
|
|
|
|
<version>2.15.02</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--UltimateCore API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.Bammerbom</groupId>
|
|
|
|
<artifactId>UltimateCore</artifactId>
|
|
|
|
<version>2.1.25</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--Arconix API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda.arconix</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>2.0.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda.arconix</groupId>
|
|
|
|
<artifactId>plugin</artifactId>
|
|
|
|
<version>2.0.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--CB 1.7 R4-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>1.7.10</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--PlaceHolderAPI-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.8.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-05-07 18:53:58 +02:00
|
|
|
<!--https://mvnrepository.com/artifact/commons-lang/commons-lang -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
2018-05-07 18:49:07 +02:00
|
|
|
<dependency>
|
2018-05-07 18:53:58 +02:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
2018-05-07 18:49:07 +02:00
|
|
|
</dependency>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|