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 | 857c032 | 2024-11-08 09:53:47 +0100 | [diff] [blame] | 7 | <version>1.0.6</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> |
dependabot[bot] | 3384a1c | 2023-02-28 00:57:11 +0000 | [diff] [blame] | 17 | <version>3.11.0</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> |
dependabot[bot] | c68dcfc | 2023-03-15 00:56:53 +0000 | [diff] [blame] | 26 | <version>3.0.0</version> |
margaretha | c50d164 | 2021-04-16 17:18:02 +0200 | [diff] [blame] | 27 | <configuration> |
| 28 | <argLine>-Dmockserver.logLevel=OFF |
| 29 | -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> |
| 30 | </configuration> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 31 | </plugin> |
| 32 | </plugins> |
| 33 | </build> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 34 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <jersey.version>1.19.4</jersey.version> |
margaretha | a9006f8 | 2024-11-08 09:47:05 +0100 | [diff] [blame] | 38 | <log4j.version>2.17.2</log4j.version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>junit</groupId> |
| 44 | <artifactId>junit</artifactId> |
dependabot[bot] | 91dbcf0 | 2021-05-23 14:03:38 +0000 | [diff] [blame] | 45 | <version>4.13.2</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>eu.clarin.sru.fcs</groupId> |
| 50 | <artifactId>fcs-simple-endpoint</artifactId> |
margaretha | 516967e | 2022-03-28 14:03:37 +0200 | [diff] [blame] | 51 | <version>1.6.0</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 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> |
dependabot[bot] | 13c363d | 2022-12-05 00:06:15 +0000 | [diff] [blame] | 63 | <version>4.5.14</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>com.fasterxml.jackson.core</groupId> |
| 67 | <artifactId>jackson-databind</artifactId> |
dependabot[bot] | 43fc3c6 | 2023-05-31 00:56:46 +0000 | [diff] [blame] | 68 | <version>2.15.2</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 69 | </dependency> |
margaretha | c50d164 | 2021-04-16 17:18:02 +0200 | [diff] [blame] | 70 | |
margaretha | 96444dc | 2019-11-29 13:26:01 +0100 | [diff] [blame] | 71 | <dependency> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 72 | <groupId>org.apache.directory.studio</groupId> |
| 73 | <artifactId>org.apache.commons.lang</artifactId> |
| 74 | <version>2.6</version> |
| 75 | </dependency> |
margaretha | 3f26b1b | 2018-10-09 15:39:20 +0200 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 78 | <artifactId>jersey-test-framework-core</artifactId> |
| 79 | <version>${jersey.version}</version> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 84 | <artifactId>jersey-test-framework-grizzly</artifactId> |
| 85 | <version>${jersey.version}</version> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
margaretha | 570f862 | 2021-03-29 20:07:52 +0200 | [diff] [blame] | 88 | |
margaretha | c50d164 | 2021-04-16 17:18:02 +0200 | [diff] [blame] | 89 | <!-- logging --> |
| 90 | <dependency> |
| 91 | <groupId>org.apache.logging.log4j</groupId> |
| 92 | <artifactId>log4j-api</artifactId> |
| 93 | <version>${log4j.version}</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.apache.logging.log4j</groupId> |
| 97 | <artifactId>log4j-core</artifactId> |
| 98 | <version>${log4j.version}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.apache.logging.log4j</groupId> |
| 102 | <artifactId>log4j-slf4j-impl</artifactId> |
| 103 | <version>${log4j.version}</version> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.logging.log4j</groupId> |
| 107 | <artifactId>log4j-jul</artifactId> |
| 108 | <version>${log4j.version}</version> |
| 109 | </dependency> |
| 110 | |
margaretha | 570f862 | 2021-03-29 20:07:52 +0200 | [diff] [blame] | 111 | <!-- Mockserver --> |
| 112 | <dependency> |
| 113 | <groupId>org.mock-server</groupId> |
| 114 | <artifactId>mockserver-netty</artifactId> |
dependabot[bot] | 0871fad | 2023-01-13 00:33:15 +0000 | [diff] [blame] | 115 | <version>5.15.0</version> |
margaretha | 570f862 | 2021-03-29 20:07:52 +0200 | [diff] [blame] | 116 | <scope>test</scope> |
| 117 | </dependency> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 118 | </dependencies> |
| 119 | |
| 120 | <repositories> |
| 121 | <repository> |
| 122 | <id>CLARIN</id> |
| 123 | <name>CLARIN Repository</name> |
margaretha | 516967e | 2022-03-28 14:03:37 +0200 | [diff] [blame] | 124 | <url>https://nexus.clarin.eu/content/repositories/Clarin/</url> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 125 | <layout>default</layout> |
| 126 | </repository> |
| 127 | </repositories> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 128 | </project> |