margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 1 | <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> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 7 | <version>1.0.2</version> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 8 | <name>SRU-WS Maven Webapp</name> |
| 9 | <url>http://maven.apache.org</url> |
| 10 | |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>junit</groupId> |
| 14 | <artifactId>junit</artifactId> |
| 15 | <version>4.12</version> |
| 16 | </dependency> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 17 | <dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 18 | <groupId>eu.clarin.weblicht</groupId> |
| 19 | <artifactId>wlfxb</artifactId> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 20 | <version>1.4.0</version> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 21 | </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> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 29 | <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> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 36 | <version>1.19.4</version> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 39 | <groupId>org.apache.httpcomponents</groupId> |
| 40 | <artifactId>httpclient</artifactId> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 41 | <version>4.5.8</version> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 42 | </dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 43 | <!-- <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> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 51 | <version>1.7.26</version> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 52 | </dependency> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.apache.commons</groupId> |
| 55 | <artifactId>commons-lang3</artifactId> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 56 | <version>3.9</version> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 57 | </dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 58 | </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> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 65 | <version>3.8.1</version> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 66 | <configuration> |
margaretha | 4dc048e | 2019-06-13 16:28:53 +0000 | [diff] [blame] | 67 | <source>1.8</source> |
| 68 | <target>1.8</target> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 69 | </configuration> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | </project> |