Add TestNG 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                 <dependency>
18                         <groupId>com.google.inject</groupId>
19                         <artifactId>guice</artifactId>
20                         <version>3.0</version>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.jcraft</groupId>
24                         <artifactId>jorbis</artifactId>
25                         <version>0.0.17</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.blinkenlights.jid3</groupId>
29                         <artifactId>JID3</artifactId>
30                         <version>0.46</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>org.testng</groupId>
34                         <artifactId>testng</artifactId>
35                         <version>6.8</version>
36                         <scope>test</scope>
37                 </dependency>
38         </dependencies>
39
40         <properties>
41                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42         </properties>
43
44         <build>
45                 <plugins>
46                         <plugin>
47                                 <groupId>org.apache.maven.plugins</groupId>
48                                 <artifactId>maven-compiler-plugin</artifactId>
49                                 <version>2.0.2</version>
50                                 <configuration>
51                                         <source>1.6</source>
52                                         <target>1.6</target>
53                                 </configuration>
54                         </plugin>
55                 </plugins>
56         </build>
57
58 </project>