Close the socket correctly.
[xudocci.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 74de294..2d6e010 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
        <modelVersion>4.0.0</modelVersion>
 
        <groupId>net.pterodactylus</groupId>
-       <artifactId>xdcc</artifactId>
+       <artifactId>xudocci</artifactId>
        <version>0.1-SNAPSHOT</version>
 
        <dependencies>
                        <artifactId>hamcrest-all</artifactId>
                        <version>1.3</version>
                </dependency>
+               <dependency>
+                       <groupId>org.testng</groupId>
+                       <artifactId>testng</artifactId>
+                       <version>6.8</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>