2016-05-12 15:27:43 +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>LibsDisguises</groupId>
|
|
|
|
<artifactId>LibsDisguises</artifactId>
|
2016-05-18 01:27:04 +02:00
|
|
|
<version>9.0.6-SNAPSHOT</version>
|
2016-05-12 15:27:43 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2016-05-18 01:34:25 +02:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2016-05-12 15:27:43 +02:00
|
|
|
<directory>target</directory>
|
|
|
|
<finalName>LibsDisguises</finalName>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${project.basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
<include>config.yml</include>
|
|
|
|
<include>README.md</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2016-06-12 16:22:56 +02:00
|
|
|
<version>1.10-R0.1-SNAPSHOT</version>
|
2016-05-12 15:27:43 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2016-06-12 16:22:56 +02:00
|
|
|
<version>1.10-R0.1-SNAPSHOT</version>
|
2016-05-12 15:27:43 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2016-05-18 01:34:25 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>http://repo.dmulloy2.net/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2016-05-12 15:27:43 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
2016-05-18 01:34:25 +02:00
|
|
|
<url>http://repo.md-5.net/content/repositories/releases/</url>
|
2016-05-12 15:27:43 +02:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>md_5-snapshots</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2016-05-09 17:28:38 +02:00
|
|
|
</project>
|