pom.xml update

This commit is contained in:
Zach Iverson 2011-06-07 09:09:13 -04:00
parent 7a67ea21ee
commit b9ff443f7a
1 changed files with 67 additions and 57 deletions

124
pom.xml
View File

@ -1,59 +1,69 @@
<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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>com.cypherx</groupId> <groupId>com.cypherx</groupId>
<artifactId>xauth</artifactId> <artifactId>xauth</artifactId>
<version>1.2.5</version> <version>1.2.5</version>
<name>xAuth</name> <name>xAuth</name>
<properties> <url>http://www.bukkit.org</url>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <repositories>
</properties> <repository>
<url>http://www.bukkit.org</url> <id>bukkit-repo</id>
<dependencies> <snapshots>
<dependency> <enabled>true</enabled>
<groupId>org.bukkit</groupId> </snapshots>
<artifactId>bukkit</artifactId> <releases>
<version>0.0.1-SNAPSHOT</version> <enabled>true</enabled>
<type>jar</type> </releases>
<scope>compile</scope> <url>http://artifacts.lukegb.com/artifactory/repo/</url>
</dependency> </repository>
<dependency> </repositories>
<groupId>com.nijikokun.bukkit</groupId> <dependencies>
<artifactId>Permissions</artifactId> <dependency>
<version>[2.7,)</version> <groupId>org.bukkit</groupId>
<type>jar</type> <artifactId>bukkit</artifactId>
<scope>compile</scope> <version>0.0.1-SNAPSHOT</version>
</dependency> <type>jar</type>
<dependency> <scope>compile</scope>
<groupId>org.bukkit</groupId> </dependency>
<artifactId>craftbukkit</artifactId> <dependency>
<version>0.0.1-SNAPSHOT</version> <groupId>org.bukkit</groupId>
<type>jar</type> <artifactId>craftbukkit</artifactId>
<scope>compile</scope> <version>0.0.1-SNAPSHOT</version>
</dependency> <type>jar</type>
</dependencies> <scope>compile</scope>
<build> </dependency>
<finalName>${project.name}</finalName> <dependency>
<plugins> <groupId>com.nijikokun.bukkit</groupId>
<plugin> <artifactId>Permissions</artifactId>
<groupId>org.apache.maven.plugins</groupId> <version>[2.7,)</version>
<artifactId>maven-compiler-plugin</artifactId> <type>jar</type>
<version>2.3.2</version> <scope>compile</scope>
<configuration> </dependency>
<source>1.6</source> </dependencies>
<target>1.6</target> <build>
<encoding>UTF-8</encoding> <finalName>${project.name}</finalName>
</configuration> <plugins>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version>
<version>2.3.1</version> <configuration>
<executions> <sourceEncoding>UTF-8</sourceEncoding>
<execution> <source>1.6</source>
<phase>package</phase> <target>1.6</target>
</execution> <encoding>UTF-8</encoding>
</executions> </configuration>
</plugin> </plugin>
</plugins> <plugin>
</build> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>