mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-01 16:20:26 +01:00
ee1f410dae
Moving big parts of code between sub-projects. Some refactoring was needed to unlink some classes. Deprecated methods removed. Some utility methods were moved to differently named utilities. Few signatures changed (e.g. BlockProperties.init). Most changes should only concern bugs or developers who dug into some NCP deeply (not sure those exist). It should still all be there.
37 lines
1.4 KiB
XML
37 lines
1.4 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>nocheatplus-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>static</version>
|
|
<name>NoCheatPlus Parent</name>
|
|
<url>http://nocheatplus.org</url>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>NCPCommons</module>
|
|
<module>NCPCompat</module>
|
|
<module>NCPCompatCB2511</module>
|
|
<module>NCPCompatCB2512</module>
|
|
<module>NCPPlugin</module>
|
|
<module>NCPCompatCB2545</module>
|
|
<module>NCPCompatCBDev</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit</id>
|
|
<name>Bukkit</name>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<description>The pom design has been taken from mbax (GitHub, TODO: link).
|
|
|
|
TODO: Switch it to an assembly pom + consider using one bukkit version only for compilation? [Downside: the compat part should be the minimal bukkit version supported, though then the plugin would be taken out, so... do it!]
|
|
|
|
Version updating is done for NCPPlugin mainly, expect the other poms version to change randomly rather.</description>
|
|
</project> |