2011-11-19 00:41:57 +01: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>
|
2011-11-24 18:39:28 +01:00
|
|
|
<groupId>cc.co.evenprime.bukkit</groupId>
|
2011-11-19 00:41:57 +01:00
|
|
|
<artifactId>NoCheat</artifactId>
|
2012-01-31 21:33:00 +01:00
|
|
|
<version>2.26</version>
|
2011-11-19 00:41:57 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>NoCheat</name>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
2012-01-31 21:33:00 +01:00
|
|
|
<version>1.1-R4-SNAPSHOT</version>
|
2011-11-23 19:23:16 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2011-11-19 00:41:57 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-01-25 17:04:07 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>repobo-rel</id>
|
|
|
|
<name>repo.bukkit.org Releases</name>
|
|
|
|
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>repobo-snap</id>
|
|
|
|
<name>repo.bukkit.org Snapshots</name>
|
|
|
|
<url>http://repo.bukkit.org/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2011-11-19 00:41:57 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2012-01-25 17:04:07 +01:00
|
|
|
<id>repobo-snap</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
2011-11-19 00:41:57 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2012-01-25 17:04:07 +01:00
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>bukkit-plugins</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2011-11-19 00:41:57 +01:00
|
|
|
<description>Detect and Fight the exploitation of various Flaws/Bugs in Minecraft.</description>
|
|
|
|
<url>http://dev.bukkit.org/server-mods/nocheat</url>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/Evenprime/NoCheat.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/Evenprime/NoCheat.git</developerConnection>
|
|
|
|
<url>https://github.com/Evenprime/NoCheat</url>
|
|
|
|
</scm>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>.</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
<include>README.txt</include>
|
|
|
|
<include>LICENSE.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
</archive>
|
|
|
|
<finalName>NoCheat</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|