blob: 6eeb78f19d974091bf42d623e4d29981546f6708 [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>
margaretha4dc048e2019-06-13 16:28:53 +00007 <version>1.0.2</version>
margarethac8f57d92014-04-28 12:13:12 +00008 <name>SRU-WS Maven Webapp</name>
9 <url>http://maven.apache.org</url>
10
margaretha4dc048e2019-06-13 16:28:53 +000011 <dependencies>
12 <dependency>
13 <groupId>junit</groupId>
14 <artifactId>junit</artifactId>
15 <version>4.12</version>
16 </dependency>
margaretha8183c322014-05-14 16:20:08 +000017 <dependency>
margarethac8f57d92014-04-28 12:13:12 +000018 <groupId>eu.clarin.weblicht</groupId>
19 <artifactId>wlfxb</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000020 <version>1.4.0</version>
margarethac8f57d92014-04-28 12:13:12 +000021 </dependency>
22 <dependency>
23 <groupId>javax.servlet</groupId>
24 <artifactId>servlet-api</artifactId>
25 <version>2.5</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
margaretha8183c322014-05-14 16:20:08 +000029 <groupId>com.sun.jersey</groupId>
30 <artifactId>jersey-server</artifactId>
31 <version>1.13</version>
32 </dependency>
33 <dependency>
34 <groupId>com.sun.jersey</groupId>
35 <artifactId>jersey-servlet</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000036 <version>1.19.4</version>
margaretha8183c322014-05-14 16:20:08 +000037 </dependency>
38 <dependency>
margarethac8f57d92014-04-28 12:13:12 +000039 <groupId>org.apache.httpcomponents</groupId>
40 <artifactId>httpclient</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000041 <version>4.5.8</version>
margaretha8183c322014-05-14 16:20:08 +000042 </dependency>
margarethac8f57d92014-04-28 12:13:12 +000043 <!-- <dependency>
44 <groupId>org.slf4j</groupId>
45 <artifactId>slf4j-simple</artifactId>
46 <version>1.7.6</version>
47 </dependency> -->
48 <dependency>
49 <groupId>org.slf4j</groupId>
50 <artifactId>slf4j-log4j12</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000051 <version>1.7.26</version>
margarethac8f57d92014-04-28 12:13:12 +000052 </dependency>
margaretha8183c322014-05-14 16:20:08 +000053 <dependency>
54 <groupId>org.apache.commons</groupId>
55 <artifactId>commons-lang3</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000056 <version>3.9</version>
margaretha8183c322014-05-14 16:20:08 +000057 </dependency>
margarethac8f57d92014-04-28 12:13:12 +000058 </dependencies>
59 <build>
60 <finalName>SRU-WS</finalName>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
margaretha4dc048e2019-06-13 16:28:53 +000065 <version>3.8.1</version>
margarethac8f57d92014-04-28 12:13:12 +000066 <configuration>
margaretha4dc048e2019-06-13 16:28:53 +000067 <source>1.8</source>
68 <target>1.8</target>
margarethac8f57d92014-04-28 12:13:12 +000069 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73</project>