Make it possible to edit the remix information of a track.
[demoscenemusic.git] / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>net.pterodactylus</groupId>
5         <artifactId>demoscene-music</artifactId>
6         <packaging>war</packaging>
7         <version>0.0.1</version>
8         <name>DemosceneMusic</name>
9         <url>http://demoscene-music.pterodactylus.net/</url>
10         <dependencies>
11                 <dependency>
12                         <groupId>junit</groupId>
13                         <artifactId>junit</artifactId>
14                         <version>3.8.1</version>
15                         <scope>test</scope>
16                 </dependency>
17                 <dependency>
18                         <groupId>net.pterodactylus</groupId>
19                         <artifactId>utils</artifactId>
20                         <version>0.12.1-SNAPSHOT</version>
21                 </dependency>
22                 <dependency>
23                         <groupId>mysql</groupId>
24                         <artifactId>mysql-connector-java</artifactId>
25                         <version>5.1.10</version>
26                         <scope>provided</scope>
27                 </dependency>
28                 <dependency>
29                         <groupId>javax.servlet</groupId>
30                         <artifactId>servlet-api</artifactId>
31                         <version>2.5</version>
32                         <scope>provided</scope>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.openid4java</groupId>
36                         <artifactId>openid4java-nodeps</artifactId>
37                         <version>0.9.6</version>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.apache.httpcomponents</groupId>
41                         <artifactId>httpclient</artifactId>
42                         <version>4.2.1</version>
43                 </dependency>
44         </dependencies>
45         <build>
46                 <finalName>demoscene-music</finalName>
47                 <plugins>
48                         <plugin>
49                                 <groupId>org.apache.maven.plugins</groupId>
50                                 <artifactId>maven-compiler-plugin</artifactId>
51                                 <version>2.3.2</version>
52                                 <configuration>
53                                         <source>1.6</source>
54                                         <target>1.6</target>
55                                 </configuration>
56                         </plugin>
57                         <plugin>
58                                 <groupId>org.apache.maven.plugins</groupId>
59                                 <artifactId>maven-javadoc-plugin</artifactId>
60                                 <version>2.7</version>
61                                 <configuration>
62                                         <show>private</show>
63                                 </configuration>
64                         </plugin>
65                 </plugins>
66         </build>
67         <properties>
68                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
69         </properties>
70 </project>