blob: a8675f339846593ed0c0bd3338d2057b91537992 [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>
50 <artifactId>KorAP-lucene-index</artifactId>
51 <version>LATEST</version>
52 </dependency>
53 <dependency>
Michael Hanlf4b5e1a2014-03-25 19:00:23 +000054 <groupId>KorAP-modules</groupId>
55 <artifactId>KorAP-Entities</artifactId>
56 <version>LATEST</version>
57 </dependency>
58 <dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000059 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.11</version>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000065 <groupId>commons-lang</groupId>
66 <artifactId>commons-lang</artifactId>
67 <version>2.6</version>
68 </dependency>
Michael Hanl2a30f422014-04-01 16:41:44 +000069 <dependency>
70 <groupId>org.z3950.zing</groupId>
71 <artifactId>cql-java</artifactId>
72 <version>1.12</version>
73 </dependency>
Michael Hanl10d21502014-02-07 20:09:58 +000074 </dependencies>
75 <build>
76 <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
77 <outputDirectory>${basedir}/bin</outputDirectory>
78 <plugins>
79 <plugin>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <version>2.3.2</version>
82 <configuration>
83 <source>1.7</source>
84 <target>1.7</target>
85 <!-- excludes>
86 <exclude>**/CosmasTree.java</exclude>
87 </excludes -->
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
Joachim Bingel4b405f52013-11-15 15:29:30 +000092</project>