margaretha | 3925c7a | 2016-02-24 11:20:49 +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/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>de.mannheim.ids</groupId> |
| 6 | <artifactId>KorapSRU</artifactId> |
margaretha | 4ec2cd3 | 2016-02-29 09:46:36 +0000 | [diff] [blame] | 7 | <version>1.0.2-SNAPSHOT</version> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 8 | <packaging>war</packaging> |
| 9 | |
| 10 | <name>KorapSRU</name> |
| 11 | <url>http://maven.apache.org</url> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
margaretha | 4ec2cd3 | 2016-02-29 09:46:36 +0000 | [diff] [blame] | 18 | <version>3.5.1</version> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 19 | <configuration> |
| 20 | <source>1.7</source> |
| 21 | <target>1.7</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | </plugins> |
| 25 | </build> |
| 26 | |
| 27 | <properties> |
| 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 29 | </properties> |
| 30 | |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>junit</groupId> |
| 34 | <artifactId>junit</artifactId> |
margaretha | 4ec2cd3 | 2016-02-29 09:46:36 +0000 | [diff] [blame] | 35 | <version>4.12</version> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>eu.clarin.sru.fcs</groupId> |
| 40 | <artifactId>fcs-simple-endpoint</artifactId> |
margaretha | c28154d | 2016-03-08 15:16:04 +0000 | [diff] [blame] | 41 | <version>1.3.0</version> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>javax.servlet</groupId> |
| 45 | <artifactId>servlet-api</artifactId> |
| 46 | <version>2.5</version> |
| 47 | <type>jar</type> |
| 48 | <scope>provided</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.apache.httpcomponents</groupId> |
| 52 | <artifactId>httpclient</artifactId> |
| 53 | <version>4.3.3</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | <artifactId>jackson-databind</artifactId> |
margaretha | 4ec2cd3 | 2016-02-29 09:46:36 +0000 | [diff] [blame] | 58 | <version>2.7.1</version> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.slf4j</groupId> |
| 62 | <artifactId>slf4j-simple</artifactId> |
| 63 | <version>1.7.6</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.directory.studio</groupId> |
| 67 | <artifactId>org.apache.commons.lang</artifactId> |
| 68 | <version>2.6</version> |
| 69 | </dependency> |
margaretha | c28154d | 2016-03-08 15:16:04 +0000 | [diff] [blame] | 70 | </dependencies> |
| 71 | |
Eliza Margaretha | e297b68 | 2016-10-06 16:06:22 +0200 | [diff] [blame] | 72 | <repositories> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 73 | <repository> |
margaretha | c28154d | 2016-03-08 15:16:04 +0000 | [diff] [blame] | 74 | <id>CLARIN</id> |
| 75 | <url>https://nexus.clarin.eu/content/repositories/Clarin</url> |
Eliza Margaretha | e297b68 | 2016-10-06 16:06:22 +0200 | [diff] [blame] | 76 | <!-- <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url> --> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 77 | <layout>default</layout> |
margaretha | c28154d | 2016-03-08 15:16:04 +0000 | [diff] [blame] | 78 | </repository> |
Eliza Margaretha | e297b68 | 2016-10-06 16:06:22 +0200 | [diff] [blame] | 79 | </repositories> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 80 | </project> |