mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2024-11-05 10:20:24 +01:00
49 lines
1.4 KiB
XML
49 lines
1.4 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>com.comphenix.tinyprotocol</groupId>
|
||
|
<artifactId>TinyProtocol</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>TinyProtocol</name>
|
||
|
<description>Intercept packets without ProtocolLib.</description>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>bukkit-rep</id>
|
||
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>comphenix-rep</id>
|
||
|
<name>Comphenix Maven Releases</name>
|
||
|
<url>http://repo.comphenix.net/content/groups/public</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<build>
|
||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.0</version>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.bukkit</groupId>
|
||
|
<artifactId>craftbukkit</artifactId>
|
||
|
<version>1.7.2-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|