Transition to Maven

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot 2011-01-01 11:23:14 +01:00
parent e8a16bb993
commit a0fc0979f7
42 changed files with 31 additions and 5 deletions

19
paper-api/.gitignore vendored
View file

@ -1,11 +1,20 @@
# Eclipse stuff
/.classpath
/.project
/.settings
/build
# netbeans
/nbproject
/build.xml
/manifest.mf
/dist
# maven
/target
# vim
.*.sw[a-p]
# test stuff (do remove me!)
/sample/test
/sample/build.xml
/sample/build
/sample/dist
/sample/nbproject
/sample/nbproject

17
paper-api/pom.xml Executable file
View file

@ -0,0 +1,17 @@
<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>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Bukkit</name>
<url>http://www.bukkit.org</url>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.7</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>