blob: 4013698f017117758ba043e49412164a4e3957d0 [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>
12 <!-- <dependency>
13 <groupId>de.tuebingen.uni.sfs</groupId>
14 <artifactId>wlf1</artifactId>
15 <version>0.4</version>
16 </dependency> -->
17
18 <dependency>
19 <groupId>eu.clarin.weblicht</groupId>
20 <artifactId>wlfxb</artifactId>
21 <version>1.2.9</version>
22 </dependency>
23 <dependency>
24 <groupId>javax.servlet</groupId>
25 <artifactId>servlet-api</artifactId>
26 <version>2.5</version>
27 <scope>provided</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.apache.httpcomponents</groupId>
31 <artifactId>httpclient</artifactId>
32 <version>4.3.3</version>
33 </dependency>
34 <dependency>
35 <groupId>junit</groupId>
36 <artifactId>junit</artifactId>
37 <version>3.8.1</version>
38 <scope>test</scope>
39 </dependency>
40 <!-- <dependency>
41 <groupId>org.slf4j</groupId>
42 <artifactId>slf4j-simple</artifactId>
43 <version>1.7.6</version>
44 </dependency> -->
45 <dependency>
46 <groupId>org.slf4j</groupId>
47 <artifactId>slf4j-log4j12</artifactId>
48 <version>1.7.5</version>
49 </dependency>
50 </dependencies>
51 <build>
52 <finalName>SRU-WS</finalName>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>2.1</version>
58 <configuration>
59 <source>1.7</source>
60 <target>1.7</target>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65</project>