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 | b6b92d1 | 2018-10-09 14:23:37 +0200 | [diff] [blame] | 7 | <version>1.0.3-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> |
| 11 | <url>http://maven.apache.org</url> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 12 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>3.5.1</version> |
| 19 | <configuration> |
| 20 | <source>1.7</source> |
| 21 | <target>1.7</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.maven.plugins</groupId> |
| 26 | <artifactId>maven-surefire-plugin</artifactId> |
| 27 | <version>2.19.1</version> |
| 28 | <configuration> |
| 29 | <excludes> |
| 30 | <exclude>de/ids_mannheim/korap/test/*.java</exclude> |
| 31 | </excludes> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | </plugins> |
| 35 | </build> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 36 | |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 37 | <properties> |
| 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 39 | <jersey.version>1.19.4</jersey.version> |
| 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <version>4.12</version> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>eu.clarin.sru.fcs</groupId> |
| 51 | <artifactId>fcs-simple-endpoint</artifactId> |
| 52 | <version>1.3.0</version> |
| 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 | b6b92d1 | 2018-10-09 14:23:37 +0200 | [diff] [blame] | 64 | <version>4.5.6</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> |
margaretha | b6b92d1 | 2018-10-09 14:23:37 +0200 | [diff] [blame] | 69 | <version>2.9.7</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.slf4j</groupId> |
| 73 | <artifactId>slf4j-simple</artifactId> |
margaretha | b6b92d1 | 2018-10-09 14:23:37 +0200 | [diff] [blame] | 74 | <version>1.7.25</version> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.directory.studio</groupId> |
| 78 | <artifactId>org.apache.commons.lang</artifactId> |
| 79 | <version>2.6</version> |
| 80 | </dependency> |
margaretha | 3f26b1b | 2018-10-09 15:39:20 +0200 | [diff] [blame^] | 81 | <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> |
margaretha | 9ebbb25 | 2017-11-23 16:40:08 +0100 | [diff] [blame] | 93 | </dependencies> |
| 94 | |
| 95 | <repositories> |
| 96 | <repository> |
| 97 | <id>CLARIN</id> |
| 98 | <name>CLARIN Repository</name> |
| 99 | <url>https://nexus.clarin.eu/content/repositories/Clarin</url> |
| 100 | <layout>default</layout> |
| 101 | </repository> |
| 102 | </repositories> |
margaretha | 3925c7a | 2016-02-24 11:20:49 +0000 | [diff] [blame] | 103 | </project> |