| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>de.mannheim.ids</groupId> |
| <artifactId>SRU-WS</artifactId> |
| <packaging>war</packaging> |
| <version>0.0.1-SNAPSHOT</version> |
| <name>SRU-WS Maven Webapp</name> |
| <url>http://maven.apache.org</url> |
| |
| <dependencies> |
| <!-- <dependency> |
| <groupId>de.tuebingen.uni.sfs</groupId> |
| <artifactId>wlf1</artifactId> |
| <version>0.4</version> |
| </dependency> --> |
| |
| <dependency> |
| <groupId>eu.clarin.weblicht</groupId> |
| <artifactId>wlfxb</artifactId> |
| <version>1.2.9</version> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| <version>2.5</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>4.3.3</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| <scope>test</scope> |
| </dependency> |
| <!-- <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>1.7.6</version> |
| </dependency> --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>1.7.5</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <finalName>SRU-WS</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.1</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |