Skip to content

Commit

Permalink
Added pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
msteiger committed Apr 27, 2014
1 parent d38123d commit 3b6c7f5
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .gitignore
@@ -1,3 +1,11 @@
# build folder in root
/build/
/.gradle

# Maven output folder
/target

# Eclipse project files
.classpath
.project
.settings/

43 changes: 43 additions & 0 deletions pom.xml
@@ -0,0 +1,43 @@
<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>brianbb</groupId>
<artifactId>jpastebin</artifactId>
<version>1.0.0</version>
<name>jPastebin</name>
<description>jPastebin is a complete pastebin.com API wrapper for Java</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
</plugins>
</build>
<url>https://github.com/BrianBB/jPastebin</url>
<issueManagement>
<url>https://github.com/BrianBB/jPastebin/issues</url>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
</license>
</licenses>
</project>

0 comments on commit 3b6c7f5

Please sign in to comment.