Add lazy group implementation and creator.
[demoscenemusic.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 9ab27be..e3a7070 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                        <version>3.8.1</version>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>net.pterodactylus</groupId>
+                       <artifactId>utils</artifactId>
+                       <version>0.12-SNAPSHOT</version>
+               </dependency>
+               <dependency>
+                       <groupId>mysql</groupId>
+                       <artifactId>mysql-connector-java</artifactId>
+                       <version>5.1.10</version>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+                       <version>2.5</version>
+                       <scope>provided</scope>
+               </dependency>
        </dependencies>
        <build>
                <finalName>demoscene-music</finalName>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.6</source>
+                                       <target>1.6</target>
+                               </configuration>
+                       </plugin>
+               </plugins>
        </build>
+       <properties>
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
 </project>