Use includes for displaying track information in non-admin mode.
[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                 <dependency>
45                         <groupId>commons-fileupload</groupId>
46                         <artifactId>commons-fileupload</artifactId>
47                         <version>1.2.2</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>commons-io</groupId>
51                         <artifactId>commons-io</artifactId>
52                         <version>1.3.2</version>
53                 </dependency>
54         </dependencies>
55         <build>
56                 <finalName>demoscene-music</finalName>
57                 <plugins>
58                         <plugin>
59                                 <groupId>org.apache.maven.plugins</groupId>
60                                 <artifactId>maven-compiler-plugin</artifactId>
61                                 <version>2.3.2</version>
62                                 <configuration>
63                                         <source>1.6</source>
64                                         <target>1.6</target>
65                                 </configuration>
66                         </plugin>
67                         <plugin>
68                                 <groupId>org.apache.maven.plugins</groupId>
69                                 <artifactId>maven-javadoc-plugin</artifactId>
70                                 <version>2.7</version>
71                                 <configuration>
72                                         <show>private</show>
73                                 </configuration>
74                         </plugin>
75                 </plugins>
76         </build>
77         <properties>
78                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79         </properties>
80 </project>