blob: 3f532b8c96b87e215b5e85c6aeaa31455cda21ed [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 Hanl2a30f422014-04-01 16:41:44 +000016 <repositories>
17 <repository>
18 <id>id-maven-repo</id>
19 <url>http://maven.indexdata.com</url>
20 </repository>
21 </repositories>
Michael Hanl10d21502014-02-07 20:09:58 +000022 <dependencies>
23 <dependency>
24 <groupId>org.antlr</groupId>
25 <artifactId>antlr4-runtime</artifactId>
26 <version>4.0</version>
27 </dependency>
28 <dependency>
29 <groupId>com.google.guava</groupId>
30 <artifactId>guava</artifactId>
31 <version>15.0</version>
32 </dependency>
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-databind</artifactId>
36 <version>2.2.2</version>
37 </dependency>
38 <dependency>
39 <groupId>KorAP-modules</groupId>
40 <artifactId>KorAP-PoliqarpParser</artifactId>
41 <version>0.05</version>
42 </dependency>
43 <dependency>
44 <groupId>KorAP-modules</groupId>
45 <artifactId>KorAP-Cosmas2Parser</artifactId>
46 <version>LATEST</version>
47 </dependency>
48 <dependency>
49 <groupId>KorAP-modules</groupId>
Michael Hanlc7154a92014-04-26 07:47:14 +000050 <artifactId>KorAP-AnnisParser</artifactId>
51 <version>LATEST</version>
52 </dependency>
53 <dependency>
54 <groupId>KorAP-modules</groupId>
Michael Hanl10d21502014-02-07 20:09:58 +000055 <artifactId>KorAP-lucene-index</artifactId>
56 <version>LATEST</version>
57 </dependency>
58 <dependency>
Michael Hanlf4b5e1a2014-03-25 19:00:23 +000059 <groupId>KorAP-modules</groupId>
60 <artifactId>KorAP-Entities</artifactId>
61 <version>LATEST</version>
62 </dependency>
63 <dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000064 <groupId>junit</groupId>
65 <artifactId>junit</artifactId>
66 <version>4.11</version>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000070 <groupId>commons-lang</groupId>
71 <artifactId>commons-lang</artifactId>
72 <version>2.6</version>
73 </dependency>
Michael Hanl2a30f422014-04-01 16:41:44 +000074 <dependency>
75 <groupId>org.z3950.zing</groupId>
76 <artifactId>cql-java</artifactId>
77 <version>1.12</version>
78 </dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000079 </dependencies>
80 <build>
81 <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
82 <outputDirectory>${basedir}/bin</outputDirectory>
83 <plugins>
84 <plugin>
85 <artifactId>maven-compiler-plugin</artifactId>
86 <version>2.3.2</version>
87 <configuration>
88 <source>1.7</source>
89 <target>1.7</target>
90 <!-- excludes>
91 <exclude>**/CosmasTree.java</exclude>
92 </excludes -->
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
Joachim Bingel4b405f52013-11-15 15:29:30 +000097</project>