blob: 91838d0b04d73441ffd5a663807fe7aa46bd4cdf [file] [log] [blame]
bodmod8e7e6c2021-11-10 11:07:38 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>de.korap.services</groupId>
6 <artifactId>GlemmServices</artifactId>
7 <version>0.2-Test</version>
8 <!-- >version>0.2-live</version -->
9
10 <packaging>war</packaging>
11 <name>GlemmServices (Test-Konfiguration)</name>
12
13 <description>RESTfull GlemmServices für KorAP (Live-Konfiguration)</description>
14
15 <dependencies>
16 <dependency>
17 <groupId>junit</groupId>
18 <artifactId>junit</artifactId>
19 <version>3.8.1</version>
20 <scope>test</scope>
21 </dependency>
22 <dependency>
23 <groupId>javax.servlet</groupId>
24 <artifactId>servlet-api</artifactId>
25 <version>2.5</version>
26 </dependency>
27 <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
28 <dependency>
29 <groupId>javax.ws.rs</groupId>
30 <artifactId>javax.ws.rs-api</artifactId>
31 <version>2.0</version>
32 </dependency>
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-core</artifactId>
36 <version>2.9.6</version>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>com.fasterxml.jackson.core</groupId>
41 <artifactId>jackson-annotations</artifactId>
42 <version>2.9.6</version>
43 </dependency>
44 <dependency>
45 <groupId>com.fasterxml.jackson.core</groupId>
46 <artifactId>jackson-databind</artifactId>
47 <version>2.9.6</version>
48 <scope>provided</scope>
49 </dependency>
50
51 <dependency>
52 <groupId>de.korap.services</groupId>
53 <artifactId>utils</artifactId>
54 <version>0.1-SNAPSHOT</version>
55 </dependency>
56 <dependency>
57 <groupId>de.korap.json</groupId>
58 <artifactId>JsonTraverse</artifactId>
59 <version>0.1-SNAPSHOT</version>
60 </dependency>
61 </dependencies>
62
63 <build>
64 <sourceDirectory>src</sourceDirectory>
65 <plugins>
66 <plugin>
67 <artifactId>maven-compiler-plugin</artifactId>
68 <version>3.7.0</version>
69 <configuration>
70 <source>1.8</source>
71 <target>1.8</target>
72 </configuration>
73 </plugin>
74 <plugin>
75 <artifactId>maven-war-plugin</artifactId>
76 <version>3.2.1</version>
77 <configuration>
78 <failOnMissingWebXml>false</failOnMissingWebXml>
79 <warSourceDirectory>WebContent</warSourceDirectory>
80 </configuration>
81 </plugin>
82 </plugins>
83 <finalName>GlemmServices</finalName>
84 </build>
85
86</project>