/
minecraftbackup
/
NoCheatPlus
Обзор
Документация
Войти
/
minecraftbackup
/
NoCheatPlus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
NCPBuildBase/pom.xml
40 строк
1 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>nocheatplus-parent</artifactId> <version>1.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ncpbuildbase</artifactId> <version>1.1-SNAPSHOT</version> <name>NCPBuildBase</name> <description>Very basic dependencies that have to be built before commons, no use of Bukkit.</description> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <targetPath>.</targetPath> <filtering>true</filtering> <directory>../NCPBuildBase/src/main/resources</directory> <includes> <include>BuildParameters.properties</include> </includes> </resource> </resources> </build> </project>