migrate to pom.xml

This commit is contained in:
aPunch 2012-02-16 20:07:50 -06:00
parent e2f29d688b
commit 5b43aeef2a
4 changed files with 32 additions and 3 deletions

View File

@ -16,11 +16,9 @@
<javac srcdir="${src}" destdir="${build}" debug="on" debuglevel="lines,vars,source" includeantruntime="false" encoding="Cp1252">
<classpath>
<pathelement path="${lib}" />
<pathelement location="${lib}/bukkit-1.1-R2.jar" />
<pathelement location="${lib}/bukkit-1.1-R3.jar" />
<pathelement location="${lib}/craftbukkit-1.1-R3.jar" />
<pathelement location="${lib}/CitizensAPI.jar" />
<pathelement location="${lib}/junit.jar" />
<pathelement location="${lib}/hamcrest.jar" />
<fileset dir="lib">
<include name="CitizensAPI.jar" />
</fileset>

Binary file not shown.

Binary file not shown.

31
pom.xml
View File

@ -42,8 +42,39 @@
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.1-R5-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<url>http://www.citizensnpcs.net</url>
<ciManagement>
<system>jenkins</system>
<url>http://ci.citizensnpcs.net</url>
</ciManagement>
<scm>
<connection>scm:git:git://github.com/CitizensDev/CitizensAPI.git</connection>
<developerConnection>scm:git:git:@github.com:CitizensDev/CitizensAPI.git</developerConnection>
<url>https://github.com/CitizensDev/CitizensAPI/tree/master/</url>
</scm>
<build>
<defaultGoal>clean</defaultGoal>
<sourceDirectory>${basedir}/src</sourceDirectory>