forked from Updated-NoCheatPlus/NoCheatPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the maven project structure no-sense
- Loading branch information
Showing
17 changed files
with
991 additions
and
1,267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,40 @@ | ||
<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>ncpbuildbase</artifactId> | ||
<packaging>jar</packaging> | ||
<name>NCPBuildBase</name> | ||
<version>1.1-SNAPSHOT</version> | ||
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> | ||
</parent> | ||
<parent> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>nocheatplus-parent</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
<description>Very basic dependencies that have to be built before commons, no use of Bukkit. | ||
</description> | ||
<artifactId>ncpbuildbase</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<targetPath>.</targetPath> | ||
<filtering>true</filtering> | ||
<directory>../NCPBuildBase/src/main/resources</directory> | ||
<includes> | ||
<include>BuildParameters.properties</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<name>NCPBuildBase</name> | ||
<description>Very basic dependencies that have to be built before commons, no use of Bukkit.</description> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</build> | ||
<build> | ||
<resources> | ||
<resource> | ||
<targetPath>.</targetPath> | ||
<filtering>true</filtering> | ||
<directory>../NCPBuildBase/src/main/resources</directory> | ||
<includes> | ||
<include>BuildParameters.properties</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
</project> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,32 @@ | ||
<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>ncpcommons</artifactId> | ||
<packaging>jar</packaging> | ||
<name>NCPCommons</name> | ||
<version>1.1-SNAPSHOT</version> | ||
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> | ||
</parent> | ||
<parent> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>nocheatplus-parent</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>ncpbuildbase</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
<description>Common data structures and other, no use of Bukkit. | ||
</description> | ||
<artifactId>ncpcommons</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<name>NCPCommons</name> | ||
<description>Common data structures and other, no use of Bukkit.</description> | ||
|
||
</project> | ||
<dependencies> | ||
<dependency> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>ncpbuildbase</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,33 @@ | ||
<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>ncpcompatbukkit</artifactId> | ||
<packaging>jar</packaging> | ||
<name>NCPCompatBukkit</name> | ||
<version>1.1-SNAPSHOT</version> | ||
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> | ||
</parent> | ||
<parent> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>nocheatplus-parent</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.15-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>ncpcore</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
<artifactId>ncpcompatbukkit</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
|
||
<description>Compatibility for using the Bukkit API only. | ||
</description> | ||
<name>NCPCompatBukkit</name> | ||
<description>Compatibility for using the Bukkit API only.</description> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.15.2-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.neatmonster</groupId> | ||
<artifactId>ncpcore</artifactId> | ||
<version>1.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> | ||
|
Oops, something went wrong.