Add Maven project description.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 17 Nov 2009 21:00:01 +0000 (22:00 +0100)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 17 Nov 2009 21:00:01 +0000 (22:00 +0100)
pom.xml [new file with mode: 0644]

diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..12eda1a
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,31 @@
+<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">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>net.pterodactylus</groupId>
+       <artifactId>jFCPlib</artifactId>
+       <version>0.2-SNAPSHOT</version>
+       <name>jFCPlib</name>
+       <packaging>jar</packaging>
+       <dependencies>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>3.8.2</version>
+                       <scope>test</scope>
+               </dependency>
+       </dependencies>
+       <properties>
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
+       <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>
+</project>