2013-05-17 21:05:19 +00: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>
|
2014-06-24 02:26:39 +00:00
|
|
|
<version>8.2.6-SNAPSHOT</version>
|
2014-05-22 20:14:46 +00:00
|
|
|
|
2013-05-17 21:05:19 +00:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2014-06-15 02:30:47 +00:00
|
|
|
<testSourceDirectory>test</testSourceDirectory>
|
2013-05-17 21:05:19 +00:00
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<directory>target</directory>
|
|
|
|
<finalName>LibsDisguises</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-04-11 16:11:51 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.fasterxml.uuid:java-uuid-generator</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-05-17 21:05:19 +00:00
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${project.basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
2013-06-01 21:38:50 +00:00
|
|
|
<include>config.yml</include>
|
2013-05-17 21:05:19 +00:00
|
|
|
<include>README.md</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
2014-01-29 02:39:01 +00:00
|
|
|
<repository>
|
|
|
|
<id>md_5-repo</id>
|
|
|
|
<url>http://repo.md-5.net/content/groups/public/</url>
|
|
|
|
</repository>
|
2013-05-17 21:05:19 +00:00
|
|
|
<repository>
|
|
|
|
<id>comphenix-rep</id>
|
|
|
|
<name>Comphenix Repository</name>
|
|
|
|
<url>http://repo.comphenix.net/content/groups/public</url>
|
|
|
|
</repository>
|
2013-12-07 14:30:30 +00:00
|
|
|
<repository>
|
2013-12-07 14:34:42 +00:00
|
|
|
<id>comphenix-snapshot-rep</id>
|
2013-12-07 14:30:30 +00:00
|
|
|
<name>Comphenix Snapshot Repository</name>
|
|
|
|
<url>http://repo.comphenix.net/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2013-05-17 21:05:19 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-07-06 14:29:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2014-10-07 16:52:24 +00:00
|
|
|
<version>3.5.0-SNAPSHOT</version>
|
2013-07-06 14:29:55 +00:00
|
|
|
</dependency>
|
2014-05-23 02:52:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.7.8-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2014-06-15 02:30:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-09-14 14:22:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2013-05-17 21:05:19 +00:00
|
|
|
</dependencies>
|
2013-08-13 08:26:48 +00:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>md_5-snapshots</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2013-05-17 21:05:19 +00:00
|
|
|
</project>
|