mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-25 20:25:19 +01:00
migrate to pom.xml
This commit is contained in:
parent
e2f29d688b
commit
5b43aeef2a
@ -16,11 +16,9 @@
|
|||||||
<javac srcdir="${src}" destdir="${build}" debug="on" debuglevel="lines,vars,source" includeantruntime="false" encoding="Cp1252">
|
<javac srcdir="${src}" destdir="${build}" debug="on" debuglevel="lines,vars,source" includeantruntime="false" encoding="Cp1252">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement path="${lib}" />
|
<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}/craftbukkit-1.1-R3.jar" />
|
||||||
<pathelement location="${lib}/CitizensAPI.jar" />
|
<pathelement location="${lib}/CitizensAPI.jar" />
|
||||||
<pathelement location="${lib}/junit.jar" />
|
|
||||||
<pathelement location="${lib}/hamcrest.jar" />
|
|
||||||
<fileset dir="lib">
|
<fileset dir="lib">
|
||||||
<include name="CitizensAPI.jar" />
|
<include name="CitizensAPI.jar" />
|
||||||
</fileset>
|
</fileset>
|
||||||
|
BIN
lib/hamcrest.jar
BIN
lib/hamcrest.jar
Binary file not shown.
BIN
lib/junit.jar
BIN
lib/junit.jar
Binary file not shown.
31
pom.xml
31
pom.xml
@ -42,8 +42,39 @@
|
|||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</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>
|
</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>
|
<build>
|
||||||
<defaultGoal>clean</defaultGoal>
|
<defaultGoal>clean</defaultGoal>
|
||||||
<sourceDirectory>${basedir}/src</sourceDirectory>
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
||||||
|
Loading…
Reference in New Issue
Block a user