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" |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 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> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 4 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 5 | <groupId>de.mannheim.ids</groupId> |
| 6 | <artifactId>KorapSRU</artifactId> |
margaretha | 8e0c3d0 | 2020-11-20 09:37:43 +0100 | [diff] [blame] | 7 | <version>1.0.4-SNAPSHOT</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 8 | <packaging>war</packaging> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 9 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 10 | <name>KorapSRU</name> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 11 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 17 | <version>3.8.1</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 18 | <configuration> |
margaretha | bc4ec53 | 2019-07-11 16:40:42 +0200 | [diff] [blame] | 19 | <source>1.8</source> |
| 20 | <target>1.8</target> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 21 | </configuration> |
| 22 | </plugin> |
| 23 | <plugin> |
| 24 | <groupId>org.apache.maven.plugins</groupId> |
| 25 | <artifactId>maven-surefire-plugin</artifactId> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 26 | <version>2.22.2</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 27 | <configuration> |
| 28 | <excludes> |
| 29 | <exclude>de/ids_mannheim/korap/test/*.java</exclude> |
| 30 | </excludes> |
| 31 | </configuration> |
| 32 | </plugin> |
| 33 | </plugins> |
| 34 | </build> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 35 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 36 | <properties> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | <jersey.version>1.19.4</jersey.version> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 39 | <slf4j.version>1.7.30</slf4j.version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
dependabot[bot] | ad92df7 | 2020-10-12 20:30:49 +0000 | [diff] [blame] | 46 | <version>4.13.1</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>eu.clarin.sru.fcs</groupId> |
| 51 | <artifactId>fcs-simple-endpoint</artifactId> |
margaretha | 34e45a7 | 2020-01-09 09:24:08 +0100 | [diff] [blame] | 52 | <version>1.4.0</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>javax.servlet</groupId> |
| 56 | <artifactId>servlet-api</artifactId> |
| 57 | <version>2.5</version> |
| 58 | <type>jar</type> |
| 59 | <scope>provided</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.httpcomponents</groupId> |
| 63 | <artifactId>httpclient</artifactId> |
margaretha | bc4ec53 | 2019-07-11 16:40:42 +0200 | [diff] [blame] | 64 | <version>4.5.9</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>com.fasterxml.jackson.core</groupId> |
| 68 | <artifactId>jackson-databind</artifactId> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 69 | <version>2.11.3</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.slf4j</groupId> |
margaretha | 96444dc | 2019-11-29 13:26:01 +0100 | [diff] [blame] | 73 | <artifactId>slf4j-api</artifactId> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 74 | <version>${slf4j.version}</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
Akron | 58df0fc | 2020-11-06 12:16:15 +0100 | [diff] [blame] | 77 | <groupId>org.slf4j</groupId> |
| 78 | <artifactId>slf4j-jdk14</artifactId> |
| 79 | <version>${slf4j.version}</version> |
margaretha | 96444dc | 2019-11-29 13:26:01 +0100 | [diff] [blame] | 80 | </dependency> |
| 81 | <dependency> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 82 | <groupId>org.apache.directory.studio</groupId> |
| 83 | <artifactId>org.apache.commons.lang</artifactId> |
| 84 | <version>2.6</version> |
| 85 | </dependency> |
margaretha | 3f26b1b | 2018-10-09 15:39:20 +0200 | [diff] [blame] | 86 | <dependency> |
| 87 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 88 | <artifactId>jersey-test-framework-core</artifactId> |
| 89 | <version>${jersey.version}</version> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 94 | <artifactId>jersey-test-framework-grizzly</artifactId> |
| 95 | <version>${jersey.version}</version> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
margaretha | 570f862 | 2021-03-29 20:07:52 +0200 | [diff] [blame^] | 98 | |
| 99 | <!-- Mockserver --> |
| 100 | <dependency> |
| 101 | <groupId>org.mock-server</groupId> |
| 102 | <artifactId>mockserver-netty</artifactId> |
| 103 | <version>5.11.2</version> |
| 104 | <scope>test</scope> |
| 105 | </dependency> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 106 | </dependencies> |
| 107 | |
| 108 | <repositories> |
| 109 | <repository> |
| 110 | <id>CLARIN</id> |
| 111 | <name>CLARIN Repository</name> |
| 112 | <url>https://nexus.clarin.eu/content/repositories/Clarin</url> |
| 113 | <layout>default</layout> |
| 114 | </repository> |
| 115 | </repositories> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 116 | </project> |