mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-01 16:20:26 +01:00
51 lines
1.5 KiB
XML
51 lines
1.5 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>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcbdev</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>NCPCompatCBDev</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>
|
|
<version>1.10-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<description>Compatibility for the development version (latest of the supported Minecraft versions).
|
|
|
|
To add a new compat module two other pom.xml files have to be modified:
|
|
- Root pom (parent): Add as module.
|
|
- NCPPlugin: Add as dependency.
|
|
|
|
The NCPPlugin sub-project contains the MCAccessFactory.</description>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |