mirror of
https://github.com/songoda/UltimateRepairing.git
synced 2024-11-01 08:20:43 +01:00
88 lines
3.0 KiB
XML
88 lines
3.0 KiB
XML
<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>RepairPlus</artifactId>
|
|
<version>1.4.1</version>
|
|
|
|
<packaging>jar</packaging>
|
|
<build>
|
|
<finalName>RepairPlus</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>
|
|
</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>
|
|
<url>http://repo.songoda.com/repository/songoda-public/</url>
|
|
</repository>
|
|
<!--Private Repo for CB-->
|
|
<repository>
|
|
<id>songoda-private</id>
|
|
<url>http://repo.songoda.com/repository/songoda-private/</url>
|
|
</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>
|
|
<repository>
|
|
<id>jcenter</id>
|
|
<url>http://jcenter.bintray.com</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.13.1</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>
|
|
<!--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>
|
|
</dependencies>
|
|
</project> |