Add Guava dependency.
[sonitus.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5         <modelVersion>4.0.0</modelVersion>
6
7         <groupId>net.pterodactylus</groupId>
8         <artifactId>sonitus</artifactId>
9         <version>0.1-SNAPSHOT</version>
10
11         <dependencies>
12                 <dependency>
13                         <groupId>com.google.guava</groupId>
14                         <artifactId>guava</artifactId>
15                         <version>14.0-rc1</version>
16                 </dependency>
17         </dependencies>
18
19         <properties>
20                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21         </properties>
22
23         <build>
24                 <plugins>
25                         <plugin>
26                                 <groupId>org.apache.maven.plugins</groupId>
27                                 <artifactId>maven-compiler-plugin</artifactId>
28                                 <version>2.0.2</version>
29                                 <configuration>
30                                         <source>1.7</source>
31                                         <target>1.7</target>
32                                 </configuration>
33                         </plugin>
34                 </plugins>
35         </build>
36
37 </project>