blob: 4555176355d63daabcbe7bb4fc743a0e12a9ca2a [file] [log] [blame]
margarethac8f57d92014-04-28 12:13:12 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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>de.mannheim.ids</groupId>
5 <artifactId>SRU-WS</artifactId>
6 <packaging>war</packaging>
7 <version>0.0.1-SNAPSHOT</version>
8 <name>SRU-WS Maven Webapp</name>
9 <url>http://maven.apache.org</url>
10
11 <dependencies>
margaretha8183c322014-05-14 16:20:08 +000012 <dependency>
margarethac8f57d92014-04-28 12:13:12 +000013 <groupId>eu.clarin.weblicht</groupId>
14 <artifactId>wlfxb</artifactId>
15 <version>1.2.9</version>
16 </dependency>
17 <dependency>
18 <groupId>javax.servlet</groupId>
19 <artifactId>servlet-api</artifactId>
20 <version>2.5</version>
21 <scope>provided</scope>
22 </dependency>
23 <dependency>
margaretha8183c322014-05-14 16:20:08 +000024 <groupId>com.sun.jersey</groupId>
25 <artifactId>jersey-server</artifactId>
26 <version>1.13</version>
27 </dependency>
28 <dependency>
29 <groupId>com.sun.jersey</groupId>
30 <artifactId>jersey-servlet</artifactId>
31 <version>1.13</version>
32 </dependency>
33 <dependency>
margarethac8f57d92014-04-28 12:13:12 +000034 <groupId>org.apache.httpcomponents</groupId>
35 <artifactId>httpclient</artifactId>
36 <version>4.3.3</version>
margaretha8183c322014-05-14 16:20:08 +000037 </dependency>
margarethac8f57d92014-04-28 12:13:12 +000038 <!-- <dependency>
39 <groupId>org.slf4j</groupId>
40 <artifactId>slf4j-simple</artifactId>
41 <version>1.7.6</version>
42 </dependency> -->
43 <dependency>
44 <groupId>org.slf4j</groupId>
45 <artifactId>slf4j-log4j12</artifactId>
46 <version>1.7.5</version>
47 </dependency>
margaretha8183c322014-05-14 16:20:08 +000048 <dependency>
49 <groupId>org.apache.commons</groupId>
50 <artifactId>commons-lang3</artifactId>
51 <version>3.3.2</version>
52 </dependency>
margarethac8f57d92014-04-28 12:13:12 +000053 </dependencies>
54 <build>
55 <finalName>SRU-WS</finalName>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-compiler-plugin</artifactId>
60 <version>2.1</version>
61 <configuration>
62 <source>1.7</source>
63 <target>1.7</target>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68</project>