pom.xml update

This commit is contained in:
Steveice10 2012-03-22 20:09:31 -07:00
parent f292d30408
commit d05d5717b8
2 changed files with 10 additions and 3 deletions

View File

@ -18,4 +18,4 @@ OpenNBT is licensed under the <b>[BSD](http://www.opensource.org/licenses/BSD-3-
<b>Building the Source</b>
--------------
OpenNBT uses Maven to manage dependencies. Simply run 'mvn clean install' in the source's directory. You can also download a build <b>[here](http://travis-ci.org/#!/Steveice10/OpenNBT/)</b>.
OpenNBT uses Maven to manage dependencies. Simply run 'mvn clean install' in the source's directory. You can also download a build <b>(COMING SOON)</b>.

11
pom.xml
View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.steveice10</groupId>
<artifactId>opennbt</artifactId>
<version>1.0</version>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>OpenNBT</name>
@ -18,8 +18,9 @@
</licenses>
<scm>
<connection>scm:git:git@github.com:Steveice10/OpenNBT.git</connection>
<developerConnection>scm:git:git@github.com:Steveice10/OpenNBT.git</developerConnection>
<url>http://github.com/Steveice10/OpenNBT/</url>
<connection>scm:git:git://github.com/Steveice10/OpenNBT.git</connection>
</scm>
<developers>
@ -34,6 +35,12 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<build>
<defaultGoal>clean install</defaultGoal>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>