/
minecraftbackup
/
NoCheatPlus
Обзор
Документация
Войти
/
minecraftbackup
/
NoCheatPlus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
NCPPlugin/pom.xml
66 строк
2 KB
Lysandr0
[#290] [#271] [Blind] Bump NCP to 1.19.4, fix NoSuchMethod error.
01 апр 2023, 14:21
01 апр 2023, 14:21
98e9635
Код
Авторство
О чём код?
<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>nocheatplus-parent</artifactId> <version>1.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ncpplugin</artifactId> <version>1.1-SNAPSHOT</version> <name>NCPPlugin</name> <description> Mainly contains the plugin class and the factories. For the plugin/artifact version see the NoCheatPlus module. </description> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.19.4-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>ncpcore</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>ncpcompatbukkit</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>ncpcompatprotocollib</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <!-- Profiles for enabling/disabling features. --> <profiles> <profile> <id>nonfree_build</id> <dependencies> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>ncpcompataggregated</artifactId> <version>1.1-SNAPSHOT</version> <type>pom</type> </dependency> </dependencies> </profile> </profiles> </project>