Remove Eclipse settings file.
[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         </dependencies>
16         <properties>
17                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18         </properties>
19         <build>
20                 <plugins>
21                         <plugin>
22                                 <groupId>org.apache.maven.plugins</groupId>
23                                 <artifactId>maven-compiler-plugin</artifactId>
24                                 <configuration>
25                                         <source>1.5</source>
26                                         <target>1.5</target>
27                                 </configuration>
28                         </plugin>
29                 </plugins>
30         </build>
31 </project>