2015-06-19 03:10:04 +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>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib-Parent</artifactId>
|
2016-03-19 21:01:38 +01:00
|
|
|
<version>v4-SNAPSHOT</version>
|
2015-06-19 03:10:04 +02:00
|
|
|
<name>ProtocolLib-Parent</name>
|
|
|
|
|
2016-02-28 04:48:11 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2015-06-19 03:10:04 +02:00
|
|
|
<modules>
|
2016-03-19 21:01:38 +01:00
|
|
|
<module>modules/API</module>
|
|
|
|
<module>modules/ProtocolLib</module>
|
2015-06-19 03:10:04 +02:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<description>Provides read/write access to the Minecraft protocol.</description>
|
|
|
|
<url>http://www.spigotmc.org/resources/protocollib.1997/</url>
|
|
|
|
<packaging>pom</packaging>
|
2015-06-22 05:36:07 +02:00
|
|
|
<inceptionYear>2012</inceptionYear>
|
2015-06-19 03:10:04 +02:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-releases</id>
|
|
|
|
<url>http://repo.dmulloy2.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>dmulloy2-snapshots</id>
|
|
|
|
<url>http://repo.dmulloy2.net/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>http://repo.dmulloy2.net/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-06-19 03:54:18 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-06-19 03:10:04 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-02-18 03:03:26 +01:00
|
|
|
<version>3.5.1</version>
|
2015-06-19 03:10:04 +02:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2016-02-18 03:03:26 +01:00
|
|
|
<version>2.6</version>
|
2015-06-19 03:10:04 +02:00
|
|
|
</plugin>
|
2015-06-19 04:48:00 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2016-02-18 03:03:26 +01:00
|
|
|
<version>2.10.3</version>
|
2015-06-19 04:56:12 +02:00
|
|
|
<configuration>
|
|
|
|
<failOnError>false</failOnError>
|
2015-06-22 05:36:07 +02:00
|
|
|
<encoding>ISO-8859-1</encoding>
|
|
|
|
<doctitle>ProtocolLib JavaDocs</doctitle>
|
|
|
|
<windowtitle>ProtocolLib JavaDocs</windowtitle>
|
|
|
|
<bottom>Copyright © {inceptionYear}–{currentYear} Comphenix and dmulloy2. Licensed under the GNU GPL v2.</bottom>
|
2015-06-19 04:56:12 +02:00
|
|
|
</configuration>
|
2015-06-19 04:48:00 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>aggregate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-06-19 03:10:04 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|