Create data manager as application-scoped bean on context startup.
[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-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         </dependencies>
35         <build>
36                 <finalName>demoscene-music</finalName>
37         </build>
38 </project>