2012-12-13 22:48:56 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-08-01 00:58:33 +02:00
|
|
|
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>
|
2012-12-13 22:48:56 +01:00
|
|
|
|
2015-08-01 00:58:33 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2012-12-13 22:48:56 +01:00
|
|
|
|
2015-08-01 00:58:33 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
2015-11-25 08:47:11 +01:00
|
|
|
<scope>provided</scope>
|
2015-08-01 00:58:33 +02:00
|
|
|
</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.
|
2015-02-04 18:49:52 +01:00
|
|
|
</description>
|
2013-02-26 23:14:33 +01:00
|
|
|
|
2015-08-01 00:58:33 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-07-30 11:27:30 +02:00
|
|
|
|
2012-12-13 22:48:56 +01:00
|
|
|
</project>
|