mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-10-31 17:29:25 +00:00
13050a81cd
* Update remote staff fetcher to translate... ...color codes, use proper link, and use multiline entry management * Implement maven shading for external libraries and set up remote staff fetcher to appropriately handle html pages * Use maven instead of ant with travis
224 lines
7.5 KiB
XML
224 lines
7.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>projectkorra</artifactId>
|
|
<version>don't matter</version>
|
|
<build>
|
|
<sourceDirectory>${project.basedir}/src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src</directory>
|
|
<includes>
|
|
<include>plugin.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<finalName>${project.name}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration />
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>worldedit-worldguard-repo</id>
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-lang</artifactId>
|
|
<groupId>commons-lang</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>gson</artifactId>
|
|
<groupId>com.google.code.gson</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>ebean</artifactId>
|
|
<groupId>org.avaje</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<groupId>org.yaml</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
<groupId>net.md-5</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>6.1.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>worldedit</artifactId>
|
|
<groupId>com.sk89q</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
<groupId>com.sk89q.spigot</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bukkit</artifactId>
|
|
<groupId>org.bukkit</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>commandbook</artifactId>
|
|
<groupId>com.sk89q</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jsr305</artifactId>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
<version>6.1.4-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>dummypermscompat</artifactId>
|
|
<groupId>com.sk89q</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>worldedit-core</artifactId>
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>bukkit</artifactId>
|
|
<groupId>org.bukkit</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>19.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>junit</artifactId>
|
|
<groupId>junit</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.ryanhamshire</groupId>
|
|
<artifactId>GriefPrevention</artifactId>
|
|
<version>10.5.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/GriefPrevention 10.5.3.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.griefcraft</groupId>
|
|
<artifactId>lwc</artifactId>
|
|
<version>4.5.0-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/LWC.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>massivecore</artifactId>
|
|
<version>2.7.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/MassiveCore 2.7.5.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>nocheatplus</artifactId>
|
|
<version>3.11.0-RC-sMD5NET-b739</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/NoCheatPlus.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.palmergames.bukkit</groupId>
|
|
<artifactId>towny</artifactId>
|
|
<version>0.89.2.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/Towny.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bekvon.bukkit</groupId>
|
|
<artifactId>residence</artifactId>
|
|
<version>4.0.0.4</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/Residence4.0.0.4.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>spirits</artifactId>
|
|
<version>1.0.0 PRIVATE PREALPHA</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/ProjectKorraSpirits.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>rpg</artifactId>
|
|
<version>1.0.2</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/ProjectKorraRPG.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>items</artifactId>
|
|
<version>1.2.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/ProjectKorraItems.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sacredlabyrinth.Phaed</groupId>
|
|
<artifactId>PreciousStones</artifactId>
|
|
<version>9.7.1-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/PreciousStones 9.7.1.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>factions</artifactId>
|
|
<version>2.7.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>C:\Users\alexj\Desktop\ProjectKorra\code\ProjectKorra/lib/Factions 2.7.5.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
</project>
|
|
|