52 lines
1.7 KiB
XML
52 lines
1.7 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>net.frozenorb</groupId>
|
||
|
<artifactId>Mobtimizer</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>6</source>
|
||
|
<target>6</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
<properties>
|
||
|
<minehq.mavenLevel>minehq-low</minehq.mavenLevel>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>minehq-repo</id>
|
||
|
<url>http://maven.minehq.com:8081/artifactory/minehq-all/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Spigot Jars --><!-- MineHQ Jars -->
|
||
|
<dependency>
|
||
|
<groupId>eu.vortexdev.invictusspigot</groupId>
|
||
|
<artifactId>server</artifactId>
|
||
|
<version>1.8.8-R0.2-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<artifactId>iLib-Bukkit</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.16.8</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|