/
minecraftbackup
/
NoCheatPlus
Обзор
Документация
Войти
/
minecraftbackup
/
NoCheatPlus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
NCPCompatNonFree/NCPCompatCBDev/pom.xml
43 строки
2 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> <parent> <groupId>fr.neatmonster</groupId> <artifactId>ncpcompatnonfree</artifactId> <version>1.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ncpcompatcbdev</artifactId> <version>1.1-SNAPSHOT</version> <name>NCPCompatCBDev</name> <description> Compatibility for the development version (latest of the supported Minecraft versions). To add a new compat module the pom.xml file within NCPCompatNonFree has to be modified: - Add as module within the profile with id 'all'. - Add as dependency within the profile with id 'all'. - (Add a new profile with both the module and dependency set.) The NCPPlugin sub-project contains the relevant factories (MCAccessFactory, EntityAccessFactory, AttributeAccessFactory). </description> <dependencies> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>ncpcore</artifactId> <version>1.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot</artifactId> <version>1.12.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> </project>