blob: b1c269cadd255021b73a1979b2792624b4c218fb [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>tests</artifactId>
7 <version>0.1</version>
8 <!-- >packaging>war</packaging-->
9 <name>Json Test Methods</name>
10
11 <description>Tests for Json Parsing</description>
12
13 <dependencies>
14 <dependency>
15 <groupId>junit</groupId>
16 <artifactId>junit</artifactId>
17 <version>3.8.1</version>
18 <scope>test</scope>
19 </dependency>
20 <dependency>
21 <groupId>com.fasterxml.jackson.core</groupId>
22 <artifactId>jackson-core</artifactId>
23 <version>2.9.6</version>
24 <scope>compile</scope>
25 </dependency>
26 <dependency>
27 <groupId>com.fasterxml.jackson.core</groupId>
28 <artifactId>jackson-annotations</artifactId>
29 <version>2.9.6</version>
30 </dependency>
31 <dependency>
32 <groupId>com.fasterxml.jackson.core</groupId>
33 <artifactId>jackson-databind</artifactId>
34 <version>2.9.6</version>
35 <scope>provided</scope>
36 </dependency>
37 <dependency>
38 <groupId>de.korap.json</groupId>
39 <artifactId>JsonTraverse</artifactId>
40 <version>0.1-SNAPSHOT</version>
41 </dependency>
42 <dependency>
43 <groupId>de.korap.services.glemm.client</groupId>
44 <artifactId>GlemmClient</artifactId>
45 <version>0.1-SNAPSHOT</version>
46 </dependency>
47 <dependency>
48 <groupId>de.korap.services</groupId>
49 <artifactId>Utils</artifactId>
50 <version>0.1-SNAPSHOT</version>
51 </dependency>
52 <dependency>
53 <groupId>de.korap.services</groupId>
54 <artifactId>wformServiceJar</artifactId>
55 <version>0.1-SNAPSHOT</version>
56 </dependency>
57 </dependencies>
58
59 <build>
60 <sourceDirectory>src</sourceDirectory>
61 <plugins>
62 <plugin>
63 <artifactId>maven-compiler-plugin</artifactId>
64 <version>3.7.0</version>
65 <configuration>
66 <source>1.8</source>
67 <target>1.8</target>
68 </configuration>
69 </plugin>
70 <plugin>
71 <artifactId>maven-war-plugin</artifactId>
72 <version>3.2.1</version>
73 <configuration>
74 <failOnMissingWebXml>false</failOnMissingWebXml>
75 <warSourceDirectory>WebContent</warSourceDirectory>
76 </configuration>
77 </plugin>
78 </plugins>
79 <finalName>TestGlemmServices</finalName>
80 </build>
81
82</project>