2015-08-01 00:49:50 +02:00
|
|
|
<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>
|
2012-12-13 22:48:56 +01:00
|
|
|
|
2015-08-01 00:49:50 +02:00
|
|
|
<!-- Informations -->
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpplugin</artifactId>
|
|
|
|
<name>NCPPlugin</name>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2018-01-09 21:26:01 +01:00
|
|
|
<description>Mainly contains the plugin class and the factories.
|
|
|
|
|
|
|
|
For the plugin/artifact version see the NoCheatPlus module.</description>
|
|
|
|
<parent>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2018-01-09 20:50:51 +01:00
|
|
|
<!-- Default dependencies. -->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.8.8-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>
|
|
|
|
</dependencies>
|
|
|
|
|
2018-01-10 01:54:08 +01:00
|
|
|
<!-- Profiles for enabling/disabling features. -->
|
|
|
|
<profiles>
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
<id>nonfree_build</id>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpcompatnonfree</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpcompatnonfreejar</artifactId>
|
|
|
|
<version>1.2-SNAPSHOT</version>
|
2018-01-10 02:32:00 +01:00
|
|
|
<scope>compile</scope>
|
2018-01-10 01:54:08 +01:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
<id>nonfree_include</id>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.neatmonster</groupId>
|
|
|
|
<artifactId>ncpcompatnonfreejar</artifactId>
|
|
|
|
<version>1.2-SNAPSHOT</version>
|
2018-01-10 02:32:00 +01:00
|
|
|
<scope>compile</scope>
|
2018-01-10 01:54:08 +01:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
</profiles>
|
|
|
|
|
2015-08-01 00:49:50 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2012-12-13 22:48:56 +01:00
|
|
|
</project>
|