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 | 8df1592 | 2016-04-05 13:42:15 +0000 | [diff] [blame^] | 7 | <version>1.0.1-SNAPSHOT</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 | |
| 11 | <dependencies> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 12 | <dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 13 | <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> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 24 | <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> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 34 | <groupId>org.apache.httpcomponents</groupId> |
| 35 | <artifactId>httpclient</artifactId> |
| 36 | <version>4.3.3</version> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 37 | </dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 38 | <!-- <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> |
margaretha | 8183c32 | 2014-05-14 16:20:08 +0000 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.apache.commons</groupId> |
| 50 | <artifactId>commons-lang3</artifactId> |
| 51 | <version>3.3.2</version> |
| 52 | </dependency> |
margaretha | c8f57d9 | 2014-04-28 12:13:12 +0000 | [diff] [blame] | 53 | </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> |