simplified pom

This commit is contained in:
Paul Schulze 2012-09-30 14:12:41 +02:00
parent 19b8e12ff4
commit f24bb73bf7

73
pom.xml
View File

@ -1,47 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<groupId>CraftincBorderProtection</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>CraftincBorderProtection</artifactId> <groupId>de.craftinc</groupId>
<packaging>jar</packaging> <artifactId>CraftincBorderProtection</artifactId>
<version>0.9.9</version> <packaging>jar</packaging>
<name>CraftincGates</name> <version>0.9.9</version>
<url>http://maven.apache.org</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<dependencies>
<dependency> <dependencies>
<groupId>org.bukkit</groupId> <dependency>
<artifactId>bukkit</artifactId> <groupId>org.bukkit</groupId>
<version>RELEASE</version> <artifactId>bukkit</artifactId>
<type>jar</type> <version>RELEASE</version>
<scope>compile</scope> <type>jar</type>
</dependency> <scope>compile</scope>
<dependency> </dependency>
<groupId>junit</groupId> </dependencies>
<artifactId>junit</artifactId>
<version>4.10</version> <repositories>
<scope>test</scope> <repository>
</dependency> <id>bukkit-repo</id>
</dependencies> <url>http://repo.bukkit.org/content/groups/public</url>
<build> </repository>
<plugins> </repositories>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
</repositories>
</project> </project>