Add URL of documentation to javadoc.
[sonitus.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 3633ae5..6a50d0a 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -8,4 +8,63 @@
        <artifactId>sonitus</artifactId>
        <version>0.1-SNAPSHOT</version>
 
+       <dependencies>
+               <dependency>
+                       <groupId>com.google.guava</groupId>
+                       <artifactId>guava</artifactId>
+                       <version>14.0-rc1</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.google.inject</groupId>
+                       <artifactId>guice</artifactId>
+                       <version>3.0</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.jcraft</groupId>
+                       <artifactId>jorbis</artifactId>
+                       <version>0.0.17</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.blinkenlights.jid3</groupId>
+                       <artifactId>JID3</artifactId>
+                       <version>0.46</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.thoughtworks.xstream</groupId>
+                       <artifactId>xstream</artifactId>
+                       <version>1.4.4</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.testng</groupId>
+                       <artifactId>testng</artifactId>
+                       <version>6.8</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-core</artifactId>
+                       <version>1.9.5</version>
+                       <scope>test</scope>
+               </dependency>
+
+       </dependencies>
+
+       <properties>
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <version>2.0.2</version>
+                               <configuration>
+                                       <source>1.6</source>
+                                       <target>1.6</target>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+
 </project>