blob: 5ca6b1554d546bb238b2aa1df96dce96d019b626 [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>
margaretha8e0c3d02020-11-20 09:37:43 +01007 <version>1.0.4-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>
Akron58df0fc2020-11-06 12:16:15 +010017 <version>3.8.1</version>
margaretha9ebbb252017-11-23 16:40:08 +010018 <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>
Akron58df0fc2020-11-06 12:16:15 +010026 <version>2.22.2</version>
margaretha9ebbb252017-11-23 16:40:08 +010027 </plugin>
28 </plugins>
29 </build>
margaretha3925c7a2016-02-24 11:20:49 +000030
margaretha9ebbb252017-11-23 16:40:08 +010031 <properties>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33 <jersey.version>1.19.4</jersey.version>
margaretha9c41faa2021-04-01 19:17:09 +020034 <slf4j.version>1.7.30</slf4j.version>
margaretha9ebbb252017-11-23 16:40:08 +010035 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
dependabot[bot]ad92df72020-10-12 20:30:49 +000041 <version>4.13.1</version>
margaretha9ebbb252017-11-23 16:40:08 +010042 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>eu.clarin.sru.fcs</groupId>
46 <artifactId>fcs-simple-endpoint</artifactId>
margaretha34e45a72020-01-09 09:24:08 +010047 <version>1.4.0</version>
margaretha9ebbb252017-11-23 16:40:08 +010048 </dependency>
49 <dependency>
50 <groupId>javax.servlet</groupId>
51 <artifactId>servlet-api</artifactId>
52 <version>2.5</version>
53 <type>jar</type>
54 <scope>provided</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.httpcomponents</groupId>
58 <artifactId>httpclient</artifactId>
margaretha9c41faa2021-04-01 19:17:09 +020059 <version>4.5.13</version>
margaretha9ebbb252017-11-23 16:40:08 +010060 </dependency>
61 <dependency>
62 <groupId>com.fasterxml.jackson.core</groupId>
63 <artifactId>jackson-databind</artifactId>
margaretha9c41faa2021-04-01 19:17:09 +020064 <version>2.12.2</version>
margaretha9ebbb252017-11-23 16:40:08 +010065 </dependency>
66 <dependency>
67 <groupId>org.slf4j</groupId>
margaretha96444dc2019-11-29 13:26:01 +010068 <artifactId>slf4j-api</artifactId>
Akron58df0fc2020-11-06 12:16:15 +010069 <version>${slf4j.version}</version>
margaretha9ebbb252017-11-23 16:40:08 +010070 </dependency>
71 <dependency>
Akron58df0fc2020-11-06 12:16:15 +010072 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-jdk14</artifactId>
74 <version>${slf4j.version}</version>
margaretha96444dc2019-11-29 13:26:01 +010075 </dependency>
76 <dependency>
margaretha9ebbb252017-11-23 16:40:08 +010077 <groupId>org.apache.directory.studio</groupId>
78 <artifactId>org.apache.commons.lang</artifactId>
79 <version>2.6</version>
80 </dependency>
margaretha3f26b1b2018-10-09 15:39:20 +020081 <dependency>
82 <groupId>com.sun.jersey.jersey-test-framework</groupId>
83 <artifactId>jersey-test-framework-core</artifactId>
84 <version>${jersey.version}</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>com.sun.jersey.jersey-test-framework</groupId>
89 <artifactId>jersey-test-framework-grizzly</artifactId>
90 <version>${jersey.version}</version>
91 <scope>test</scope>
92 </dependency>
margaretha570f8622021-03-29 20:07:52 +020093
94 <!-- Mockserver -->
95 <dependency>
96 <groupId>org.mock-server</groupId>
97 <artifactId>mockserver-netty</artifactId>
98 <version>5.11.2</version>
99 <scope>test</scope>
100 </dependency>
margaretha9ebbb252017-11-23 16:40:08 +0100101 </dependencies>
102
103 <repositories>
104 <repository>
105 <id>CLARIN</id>
106 <name>CLARIN Repository</name>
107 <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
108 <layout>default</layout>
109 </repository>
110 </repositories>
margaretha3925c7a2016-02-24 11:20:49 +0000111</project>