mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-01 08:09:46 +01:00
39 lines
1.3 KiB
XML
39 lines
1.3 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>static</version>
|
|
|
|
<parent>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
<version>static</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcore</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<version>1.8-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<description>Compatibility for the development version (latest of the supported Minecraft versions).
|
|
|
|
Version updating is done for the NoCheatPlus sub-module.
|
|
|
|
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.
|
|
- NoCheatPlus: Add as include (source).
|
|
|
|
The NCPPlugin sub-project contains the MCAccessFactory.</description>
|
|
</project> |