summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-01-01 19:35:03 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2011-01-01 19:35:03 +0000
commit5c133892df5de6ab14b9e6445dd7f673e73b8f73 (patch)
treef2006cb2200ed8312a8fa8ac52dac725d776afad /pom.xml
parent3317654a9c75180810b906eef04a5cbdf2e92d74 (diff)
downloadbukkit-5c133892df5de6ab14b9e6445dd7f673e73b8f73.tar
bukkit-5c133892df5de6ab14b9e6445dd7f673e73b8f73.tar.gz
bukkit-5c133892df5de6ab14b9e6445dd7f673e73b8f73.tar.lz
bukkit-5c133892df5de6ab14b9e6445dd7f673e73b8f73.tar.xz
bukkit-5c133892df5de6ab14b9e6445dd7f673e73b8f73.zip
Java 1.5!
(Also ninjaencoding)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml46
1 files changed, 29 insertions, 17 deletions
diff --git a/pom.xml b/pom.xml
index 43b11868..710c6af2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,17 +1,29 @@
-<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>
+<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>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ <version>1.7</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+</project>