/
minecraftbackup
/
NoCheatPlus
Обзор
Документация
Войти
/
minecraftbackup
/
NoCheatPlus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pom.xml
84 строки
3 KB
Gabriele C
Fix the maven project structure no-sense
20 июл 2020, 02:22
20 июл 2020, 02:22
e5930d3
Код
Авторство
О чём код?
<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>1.1-SNAPSHOT</version> <name>NoCheatPlus Parent</name> <description> The initial pom design had been taken from mbax (GitHub). The naming of the native compatibility modules mostly follows NCPCompat + shortcut of server mod name + earliest build/version that the module would run with (though it should be compiled with the latest available build rather, latest build also can be used, if it is the first module depicting an API incompatibility transition). NCPCompatBukkit provides compatibility for the Bukkit-API only (no native module available), aiming at keeping NCP up for a new MC version for if no native module is available . Tendency is to use the latest Bukkit version rather, but since it is used for some "unknown mods" as well, it is not compiled with the latest Bukkit version always. TODO: Better place for descriptions like this? </description> <url>https://dev.bukkit.org/projects/nocheatplus</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy_MM_dd-HH_mm</maven.build.timestamp.format> </properties> <!-- Default modules --> <modules> <module>NCPBuildBase</module> <module>NCPCommons</module> <module>NCPCore</module> <module>NCPCompatBukkit</module> <module>NCPCompatProtocolLib</module> <module>NCPPlugin</module> <module>NoCheatPlus</module> </modules> <!-- Profiles for enabling/disabling features. --> <profiles> <profile> <id>nonfree_build</id> <modules> <module>NCPCompatNonFree</module> </modules> </profile> </profiles> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> </repository> </repositories> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <!-- Skip module deploy by default --> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>