mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Transition to Maven
By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
parent
e8a16bb993
commit
a0fc0979f7
42 changed files with 31 additions and 5 deletions
19
paper-api/.gitignore
vendored
19
paper-api/.gitignore
vendored
|
@ -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
17
paper-api/pom.xml
Executable 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>
|
Loading…
Reference in a new issue