blob: a9b7ae74ec7c9b3c05c97545f7c14697a7928aa9 [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"
margaretha9ebbb252017-11-23 16:40:08 +01002 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>
margaretha3925c7a2016-02-24 11:20:49 +00004
margaretha9ebbb252017-11-23 16:40:08 +01005 <groupId>de.mannheim.ids</groupId>
6 <artifactId>KorapSRU</artifactId>
margarethab6b92d12018-10-09 14:23:37 +02007 <version>1.0.3-SNAPSHOT</version>
margaretha9ebbb252017-11-23 16:40:08 +01008 <packaging>war</packaging>
margaretha3925c7a2016-02-24 11:20:49 +00009
margaretha9ebbb252017-11-23 16:40:08 +010010 <name>KorapSRU</name>
margaretha3925c7a2016-02-24 11:20:49 +000011
margaretha9ebbb252017-11-23 16:40:08 +010012 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>3.5.1</version>
18 <configuration>
margarethabc4ec532019-07-11 16:40:42 +020019 <source>1.8</source>
20 <target>1.8</target>
margaretha9ebbb252017-11-23 16:40:08 +010021 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 <version>2.19.1</version>
27 <configuration>
28 <excludes>
29 <exclude>de/ids_mannheim/korap/test/*.java</exclude>
30 </excludes>
31 </configuration>
32 </plugin>
33 </plugins>
34 </build>
margaretha3925c7a2016-02-24 11:20:49 +000035
margaretha9ebbb252017-11-23 16:40:08 +010036 <properties>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38 <jersey.version>1.19.4</jersey.version>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>4.12</version>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>eu.clarin.sru.fcs</groupId>
50 <artifactId>fcs-simple-endpoint</artifactId>
51 <version>1.3.0</version>
52 </dependency>
53 <dependency>
54 <groupId>javax.servlet</groupId>
55 <artifactId>servlet-api</artifactId>
56 <version>2.5</version>
57 <type>jar</type>
58 <scope>provided</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.httpcomponents</groupId>
62 <artifactId>httpclient</artifactId>
margarethabc4ec532019-07-11 16:40:42 +020063 <version>4.5.9</version>
margaretha9ebbb252017-11-23 16:40:08 +010064 </dependency>
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
margarethabc4ec532019-07-11 16:40:42 +020068 <version>[2.9.9,)</version>
margaretha9ebbb252017-11-23 16:40:08 +010069 </dependency>
70 <dependency>
71 <groupId>org.slf4j</groupId>
margaretha96444dc2019-11-29 13:26:01 +010072 <artifactId>slf4j-api</artifactId>
73 <version>1.7.29</version>
margaretha9ebbb252017-11-23 16:40:08 +010074 </dependency>
75 <dependency>
margaretha96444dc2019-11-29 13:26:01 +010076 <groupId>org.slf4j</groupId>
77 <artifactId>slf4j-jdk14</artifactId>
78 <version>1.7.29</version>
79 </dependency>
80 <dependency>
margaretha9ebbb252017-11-23 16:40:08 +010081 <groupId>org.apache.directory.studio</groupId>
82 <artifactId>org.apache.commons.lang</artifactId>
83 <version>2.6</version>
84 </dependency>
margaretha3f26b1b2018-10-09 15:39:20 +020085 <dependency>
86 <groupId>com.sun.jersey.jersey-test-framework</groupId>
87 <artifactId>jersey-test-framework-core</artifactId>
88 <version>${jersey.version}</version>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>com.sun.jersey.jersey-test-framework</groupId>
93 <artifactId>jersey-test-framework-grizzly</artifactId>
94 <version>${jersey.version}</version>
95 <scope>test</scope>
96 </dependency>
margaretha9ebbb252017-11-23 16:40:08 +010097 </dependencies>
98
99 <repositories>
100 <repository>
101 <id>CLARIN</id>
102 <name>CLARIN Repository</name>
103 <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
104 <layout>default</layout>
105 </repository>
106 </repositories>
margaretha3925c7a2016-02-24 11:20:49 +0000107</project>