blob: 9adfb7263c67225926d9dbe7f2445201518ece69 [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>
7 <version>0.0.1-SNAPSHOT</version>
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>
18 <version>2.1</version>
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>
35 <version>3.8.1</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>eu.clarin.sru.fcs</groupId>
40 <artifactId>fcs-simple-endpoint</artifactId>
41 <version>1.2.0</version>
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>
58 <version>2.2.3</version>
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>
70 </dependencies>
71
72 <repositories>
73 <repository>
74 <id>clarin</id>
75 <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
76 <layout>default</layout>
77 </repository>
78 </repositories>
79</project>