NoCheatPlus/NCPCompatProtocolLib/pom.xml

59 lines
1.6 KiB
XML
Raw Permalink Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2015-08-01 00:58:33 +02:00
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>fr.neatmonster</groupId>
<artifactId>ncpcompatprotocollib</artifactId>
<packaging>jar</packaging>
<name>NCPCompatProtocolLib</name>
<version>1.1-SNAPSHOT</version>
2015-08-01 00:58:33 +02:00
<parent>
<groupId>fr.neatmonster</groupId>
<artifactId>nocheatplus-parent</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
2015-08-01 00:58:33 +02:00
<repositories>
<repository>
<id>dmulloy2-repo</id>
<url>http://repo.dmulloy2.net/content/groups/public/</url>
2015-08-01 00:58:33 +02:00
</repository>
</repositories>
2015-08-01 00:58:33 +02:00
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.12-pre2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2015-08-01 00:58:33 +02:00
<dependency>
<groupId>fr.neatmonster</groupId>
<artifactId>ncpcore</artifactId>
<version>1.1-SNAPSHOT</version>
<scope>provided</scope>
2015-08-01 00:58:33 +02:00
</dependency>
<dependency>
<groupId>com.comphenix.protocol</groupId>
2017-04-18 19:37:17 +02:00
<artifactId>ProtocolLib-API</artifactId>
<version>4.3.0-SNAPSHOT</version>
<scope>provided</scope>
2015-08-01 00:58:33 +02:00
</dependency>
</dependencies>
<description>Features using the plugin ProtocolLib:
2016-12-04 14:35:07 +01:00
https://dev.bukkit.org/bukkit-plugins/protocollib/</description>
2015-08-01 00:58:33 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>