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"
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 > ncpcompatcbdev</artifactId>
<packaging > jar</packaging>
<name > NCPCompatCBDev</name>
<version > 1.1-SNAPSHOT</version>
2013-01-06 13:58:36 +01:00
2015-08-01 00:58:33 +02:00
<parent >
<groupId > fr.neatmonster</groupId>
<artifactId > nocheatplus-parent</artifactId>
<version > 1.1-SNAPSHOT</version>
</parent>
2013-01-06 13:58:36 +01:00
2015-08-01 00:58:33 +02:00
<dependencies >
<dependency >
<groupId > fr.neatmonster</groupId>
<artifactId > ncpcore</artifactId>
<version > 1.1-SNAPSHOT</version>
<scope > provided</scope>
</dependency>
<dependency >
2016-06-09 16:44:44 +02:00
<groupId > org.bukkit</groupId>
<artifactId > craftbukkit</artifactId>
2016-12-29 13:46:04 +01:00
<version > 1.11.2-R0.1-SNAPSHOT</version>
2015-08-01 00:58:33 +02:00
<scope > provided</scope>
</dependency>
</dependencies>
2013-01-06 13:58:36 +01:00
2015-08-01 00:58:33 +02:00
<description > Compatibility for the development version (latest of the supported Minecraft versions).
2013-01-06 13:58:36 +01:00
2015-07-31 23:04:23 +02:00
To add a new compat module two other pom.xml files have to be modified:
2016-12-27 19:50:06 +01:00
- Root pom (parent): Add as module within profile with id 'all'.
- NCPPlugin: Add as dependency for the profile with id 'all'.
- (Add a new profile for this specific module, altering both poms mentioned above. If the profile already exists, pointing at ncpcompatcbdev, a new profile can be made with updating NCPCompatCBDev then.)
2014-11-11 21:44:40 +01:00
2016-12-27 19:50:06 +01:00
The NCPPlugin sub-project contains the relevant factories (MCAccessFactory, EntityAccessFactory, AttributeAccessFactory).</description>
2015-07-30 11:27:30 +02:00
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>
2015-07-30 11:27:30 +02:00
2013-01-06 13:58:36 +01:00
</project>