blob: d49199c850c80be5a5e562a435e1aceec133ecf4 [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>
11 <url>http://maven.apache.org</url>
margaretha3925c7a2016-02-24 11:20:49 +000012
margaretha9ebbb252017-11-23 16:40:08 +010013 <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>
margaretha3925c7a2016-02-24 11:20:49 +000036
margaretha9ebbb252017-11-23 16:40:08 +010037 <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>
margarethab6b92d12018-10-09 14:23:37 +020064 <version>4.5.6</version>
margaretha9ebbb252017-11-23 16:40:08 +010065 </dependency>
66 <dependency>
67 <groupId>com.fasterxml.jackson.core</groupId>
68 <artifactId>jackson-databind</artifactId>
margarethab6b92d12018-10-09 14:23:37 +020069 <version>2.9.7</version>
margaretha9ebbb252017-11-23 16:40:08 +010070 </dependency>
71 <dependency>
72 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-simple</artifactId>
margarethab6b92d12018-10-09 14:23:37 +020074 <version>1.7.25</version>
margaretha9ebbb252017-11-23 16:40:08 +010075 </dependency>
76 <dependency>
77 <groupId>org.apache.directory.studio</groupId>
78 <artifactId>org.apache.commons.lang</artifactId>
79 <version>2.6</version>
80 </dependency>
81 </dependencies>
82
83 <repositories>
84 <repository>
85 <id>CLARIN</id>
86 <name>CLARIN Repository</name>
87 <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
88 <layout>default</layout>
89 </repository>
90 </repositories>
margaretha3925c7a2016-02-24 11:20:49 +000091</project>