blob: b03027c1581e3caa7af73a3e19112a6fbde2160c [file] [log] [blame]
Joachim Bingel4b405f52013-11-15 15:29:30 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Hanl10d21502014-02-07 20:09:58 +00002 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>
4 <parent>
5 <groupId>KorAP-modules</groupId>
6 <artifactId>KorAP-core-modules</artifactId>
7 <version>1.1</version>
8 </parent>
9
10 <groupId>KorAP-modules</groupId>
11 <artifactId>KorAP-querySerialization</artifactId>
12 <version>0.0.2</version>
13 <packaging>jar</packaging>
Michael Hanl10d21502014-02-07 20:09:58 +000014 <name>KorAP-querySerialization</name>
15 <url>http://maven.apache.org</url>
Michael Hanl10d21502014-02-07 20:09:58 +000016 <dependencies>
17 <dependency>
18 <groupId>org.antlr</groupId>
19 <artifactId>antlr4-runtime</artifactId>
20 <version>4.0</version>
21 </dependency>
22 <dependency>
23 <groupId>com.google.guava</groupId>
24 <artifactId>guava</artifactId>
25 <version>15.0</version>
26 </dependency>
27 <dependency>
28 <groupId>com.fasterxml.jackson.core</groupId>
29 <artifactId>jackson-databind</artifactId>
30 <version>2.2.2</version>
31 </dependency>
32 <dependency>
33 <groupId>KorAP-modules</groupId>
34 <artifactId>KorAP-PoliqarpParser</artifactId>
35 <version>0.05</version>
36 </dependency>
37 <dependency>
38 <groupId>KorAP-modules</groupId>
39 <artifactId>KorAP-Cosmas2Parser</artifactId>
40 <version>LATEST</version>
41 </dependency>
42 <dependency>
43 <groupId>KorAP-modules</groupId>
44 <artifactId>KorAP-lucene-index</artifactId>
45 <version>LATEST</version>
46 </dependency>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>4.11</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>joda-time</groupId>
55 <artifactId>joda-time</artifactId>
56 <version>2.2</version>
57 </dependency>
58 <dependency>
59 <groupId>commons-lang</groupId>
60 <artifactId>commons-lang</artifactId>
61 <version>2.6</version>
62 </dependency>
63 </dependencies>
64 <build>
65 <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
66 <outputDirectory>${basedir}/bin</outputDirectory>
67 <plugins>
68 <plugin>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <version>2.3.2</version>
71 <configuration>
72 <source>1.7</source>
73 <target>1.7</target>
74 <!-- excludes>
75 <exclude>**/CosmasTree.java</exclude>
76 </excludes -->
77 </configuration>
78 </plugin>
79 </plugins>
80 </build>
Joachim Bingel4b405f52013-11-15 15:29:30 +000081</project>