mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-20 01:05:55 +01:00
ce834675d7
Factories are now on NCPPlugin level, thus all the core stuff can be in one module, giving better source code browsing. Updates has been moved into an updates package, because there is to be expected more content, and to make utilities less fat. To indicate the direction, the basic infra-structure has been added to allow adding components to the DefaultComponentFactory. Further processQueuedSubComponents is now called after each components adding in order to allow more flexible registry features.
33 lines
1.3 KiB
XML
33 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>ncpcore</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>NCPCore</name>
|
|
<version>static</version>
|
|
|
|
<parent>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
<version>static</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.4.7-R1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcommons</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<description>Core components and checks implementations. This contains about everything, just not the component/compat factories and not the plugin itself. NCPCore allows to add more modules/components that use check-specific classes to be added in the factories on NCPPlugin level.
|
|
|
|
Version updating is done for NCPPlugin mainly, expect the other poms version to change randomly rather.</description>
|
|
</project>
|