2016-12-27 23:36:03 +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>ncpcompatspigotcb1_10_r1</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>NCPCompatSpigotCB1_10_R1</name>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpcore</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
2016-12-29 13:42:58 +01:00
|
|
|
<version>1.10-R0.1-SNAPSHOT</version>
|
2016-12-27 23:36:03 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<description>Compatibility for SpigotCB1_10_R1.
|
|
|
|
|
2018-01-09 21:38:42 +01:00
|
|
|
To add a new compat module the pom.xml file within NCPCompatNonFree has to be modified:
|
|
|
|
- Add as module within the profile with id 'all'.
|
|
|
|
- Add as dependency within the profile with id 'all'.
|
|
|
|
- (Add a new profile with both the module and dependency set.)
|
2016-12-27 23:36:03 +01:00
|
|
|
|
|
|
|
The NCPPlugin sub-project contains the relevant factories (MCAccessFactory, EntityAccessFactory, AttributeAccessFactory).</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|