2012-01-16 22:18:47 +01:00
|
|
|
<!-- Citizens build file -->
|
|
|
|
|
|
|
|
<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>net.citizensnpcs</groupId>
|
|
|
|
<artifactId>citizens</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<name>Citizens</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2012-02-18 10:12:07 +01:00
|
|
|
<bukkit.version>1.1-R5-SNAPSHOT</bukkit.version>
|
|
|
|
<craftbukkit.version>1.1-R5-SNAPSHOT</craftbukkit.version>
|
2012-02-19 15:33:27 +01:00
|
|
|
<citizensapi.version>2.0</citizensapi.version>
|
2012-01-16 22:18:47 +01:00
|
|
|
<build.number>Unknown</build.number>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
2012-02-17 08:48:20 +01:00
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
2012-01-16 22:18:47 +01:00
|
|
|
</repository>
|
2012-02-17 08:48:20 +01:00
|
|
|
|
2012-02-19 15:28:08 +01:00
|
|
|
<repository>
|
2012-02-19 16:11:06 +01:00
|
|
|
<id>everything</id>
|
|
|
|
<url>http://repo.citizensnpcs.net/</url>
|
2012-02-19 15:28:08 +01:00
|
|
|
</repository>
|
2012-01-16 22:18:47 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>${craftbukkit.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.citizensnpcs</groupId>
|
|
|
|
<artifactId>citizensapi</artifactId>
|
2012-02-18 10:12:07 +01:00
|
|
|
<version>${citizensapi.version}</version>
|
2012-01-16 22:18:47 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-02-17 03:07:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2012-02-17 03:54:32 +01:00
|
|
|
<version>${bukkit.version}</version>
|
2012-02-17 03:07:50 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
2012-02-17 03:54:32 +01:00
|
|
|
<artifactId>junit-dep</artifactId>
|
2012-02-17 03:07:50 +01:00
|
|
|
<version>4.10</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
2012-02-17 03:54:32 +01:00
|
|
|
<exclusions>
|
2012-02-17 03:56:16 +01:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-02-17 03:07:50 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
2012-02-17 03:54:32 +01:00
|
|
|
<version>1.2.1</version>
|
2012-02-17 03:07:50 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-01-16 22:18:47 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2012-02-17 03:07:50 +01:00
|
|
|
<url>http://www.citizensnpcs.net</url>
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.citizensnpcs.net</url>
|
|
|
|
</ciManagement>
|
|
|
|
<scm>
|
2012-02-17 03:11:24 +01:00
|
|
|
<connection>scm:git:git://github.com/aPunch/Citizens2.git</connection>
|
|
|
|
<developerConnection>scm:git:git:@github.com:aPunch/Citizens2.git</developerConnection>
|
|
|
|
<url>https://github.com/aPunch/Citizens2/tree/master/</url>
|
2012-02-17 03:07:50 +01:00
|
|
|
</scm>
|
2012-01-16 22:18:47 +01:00
|
|
|
<build>
|
2012-02-19 16:17:20 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2012-01-16 22:18:47 +01:00
|
|
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
2012-02-18 10:06:33 +01:00
|
|
|
<filtering>true</filtering>
|
2012-01-16 22:18:47 +01:00
|
|
|
<directory>${basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2012-02-18 10:06:33 +01:00
|
|
|
<version>1.4</version>
|
2012-01-16 22:18:47 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>net.citizensnpcs:*</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|