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