blob: 83c7e1ed298af79626eda2f18d879d45fccf7795 [file] [log] [blame]
margaretha3925c7a2016-02-24 11:20:49 +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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>de.mannheim.ids</groupId>
6 <artifactId>KorapSRU</artifactId>
margaretha4ec2cd32016-02-29 09:46:36 +00007 <version>1.0.2-SNAPSHOT</version>
margaretha3925c7a2016-02-24 11:20:49 +00008 <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>
margaretha4ec2cd32016-02-29 09:46:36 +000018 <version>3.5.1</version>
margaretha3925c7a2016-02-24 11:20:49 +000019 <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>
margaretha4ec2cd32016-02-29 09:46:36 +000035 <version>4.12</version>
margaretha3925c7a2016-02-24 11:20:49 +000036 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>eu.clarin.sru.fcs</groupId>
40 <artifactId>fcs-simple-endpoint</artifactId>
margarethac28154d2016-03-08 15:16:04 +000041 <version>1.3.0</version>
margaretha3925c7a2016-02-24 11:20:49 +000042 </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>
margaretha4ec2cd32016-02-29 09:46:36 +000058 <version>2.7.1</version>
margaretha3925c7a2016-02-24 11:20:49 +000059 </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>
margarethad85d1ca2016-07-19 16:23:10 +020069 </dependency>
margarethac28154d2016-03-08 15:16:04 +000070 </dependencies>
71
Eliza Margarethae297b682016-10-06 16:06:22 +020072 <repositories>
margaretha3925c7a2016-02-24 11:20:49 +000073 <repository>
margarethac28154d2016-03-08 15:16:04 +000074 <id>CLARIN</id>
margaretha9b379f52016-07-19 16:23:10 +020075 <name>CLARIN Repository</name>
margarethac28154d2016-03-08 15:16:04 +000076 <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
margaretha3925c7a2016-02-24 11:20:49 +000077 <layout>default</layout>
margarethac28154d2016-03-08 15:16:04 +000078 </repository>
Eliza Margarethae297b682016-10-06 16:06:22 +020079 </repositories>
margaretha3925c7a2016-02-24 11:20:49 +000080</project>