Add Maven project file.
[Sone.git] / pom.xml
1 <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">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>net.pterodactylus</groupId>
4         <artifactId>sone</artifactId>
5         <version>0.0.1-SNAPSHOT</version>
6         <build>
7                 <plugins>
8                         <plugin>
9                                 <groupId>org.apache.maven.plugins</groupId>
10                                 <artifactId>maven-compiler-plugin</artifactId>
11                                 <configuration>
12                                         <source>1.6</source>
13                                         <target>1.6</target>
14                                 </configuration>
15                         </plugin>
16                 </plugins>
17         </build>
18         <dependencies>
19                 <dependency>
20                         <groupId>net.pterodactylus</groupId>
21                         <artifactId>utils</artifactId>
22                         <version>0.6.1</version>
23                 </dependency>
24                 <dependency>
25                         <groupId>junit</groupId>
26                         <artifactId>junit</artifactId>
27                         <version>3.8.2</version>
28                         <scope>test</scope>
29                 </dependency>
30         </dependencies>
31 </project>