Move utility classes to utils.
[jFCPlib.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/maven-v4_0_0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>net.pterodactylus</groupId>
4         <artifactId>jFCPlib</artifactId>
5         <version>0.2-SNAPSHOT</version>
6         <name>jFCPlib</name>
7         <packaging>jar</packaging>
8         <dependencies>
9                 <dependency>
10                         <groupId>junit</groupId>
11                         <artifactId>junit</artifactId>
12                         <version>3.8.2</version>
13                         <scope>test</scope>
14                 </dependency>
15                 <dependency>
16                         <groupId>net.pterodactylus</groupId>
17                         <artifactId>utils</artifactId>
18                         <version>0.1.1</version>
19                 </dependency>
20         </dependencies>
21         <properties>
22                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23         </properties>
24         <build>
25                 <plugins>
26                         <plugin>
27                                 <groupId>org.apache.maven.plugins</groupId>
28                                 <artifactId>maven-compiler-plugin</artifactId>
29                                 <configuration>
30                                         <source>1.5</source>
31                                         <target>1.5</target>
32                                 </configuration>
33                         </plugin>
34                 </plugins>
35         </build>
36 </project>