2013-01-06 13:58:36 +01: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>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpcompatcbdev</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>NCPCompatCBDev</name>
|
2015-02-04 18:49:52 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2013-01-06 13:58:36 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>nocheatplus-parent</artifactId>
|
2015-02-06 02:05:48 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2013-01-06 13:58:36 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
2013-05-22 12:24:48 +02:00
|
|
|
<artifactId>ncpcore</artifactId>
|
2015-02-06 02:05:48 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2015-03-20 20:46:23 +01:00
|
|
|
<scope>provided</scope>
|
2013-01-06 13:58:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
2015-05-29 00:07:13 +02:00
|
|
|
<version>1.8.6-R0.1-SNAPSHOT</version>
|
2015-03-20 20:46:23 +01:00
|
|
|
<scope>provided</scope>
|
2013-06-24 13:27:44 +02:00
|
|
|
</dependency>
|
2013-01-06 13:58:36 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2013-05-22 12:24:48 +02:00
|
|
|
<description>Compatibility for the development version (latest of the supported Minecraft versions).
|
2013-01-06 13:58:36 +01:00
|
|
|
|
2014-04-14 23:08:01 +02:00
|
|
|
To add a new compat module three other pom.xml files have to be modified:
|
|
|
|
- Root pom (parent): Add as module.
|
|
|
|
- NCPPlugin: Add as dependency.
|
2014-11-11 21:44:40 +01:00
|
|
|
- NoCheatPlus: Add as include (source).
|
|
|
|
|
|
|
|
The NCPPlugin sub-project contains the MCAccessFactory.</description>
|
2015-07-30 11:27:30 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2013-01-06 13:58:36 +01:00
|
|
|
</project>
|