Add newline to EOF.
[rhynodge.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>net.pterodactylus</groupId>
5         <artifactId>reactor</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7         <properties>
8                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9         </properties>
10         <build>
11                 <plugins>
12                         <plugin>
13                                 <artifactId>maven-compiler-plugin</artifactId>
14                                 <version>2.3.2</version>
15                                 <configuration>
16                                         <source>1.6</source>
17                                         <target>1.6</target>
18                                 </configuration>
19                         </plugin>
20                 </plugins>
21         </build>
22         <dependencies>
23                 <dependency>
24                         <groupId>com.google.guava</groupId>
25                         <artifactId>guava</artifactId>
26                         <version>14.0-rc1</version>
27                 </dependency>
28         </dependencies>
29 </project>