Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 2 | 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 Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 14 | <name>KorAP-querySerialization</name> |
| 15 | <url>http://maven.apache.org</url> |
Michael Hanl | 2a30f42 | 2014-04-01 16:41:44 +0000 | [diff] [blame] | 16 | <repositories> |
| 17 | <repository> |
| 18 | <id>id-maven-repo</id> |
| 19 | <url>http://maven.indexdata.com</url> |
| 20 | </repository> |
| 21 | </repositories> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 22 | <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 Hanl | c7154a9 | 2014-04-26 07:47:14 +0000 | [diff] [blame^] | 50 | <artifactId>KorAP-AnnisParser</artifactId> |
| 51 | <version>LATEST</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>KorAP-modules</groupId> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 55 | <artifactId>KorAP-lucene-index</artifactId> |
| 56 | <version>LATEST</version> |
| 57 | </dependency> |
| 58 | <dependency> |
Michael Hanl | f4b5e1a | 2014-03-25 19:00:23 +0000 | [diff] [blame] | 59 | <groupId>KorAP-modules</groupId> |
| 60 | <artifactId>KorAP-Entities</artifactId> |
| 61 | <version>LATEST</version> |
| 62 | </dependency> |
| 63 | <dependency> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 64 | <groupId>junit</groupId> |
| 65 | <artifactId>junit</artifactId> |
| 66 | <version>4.11</version> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 70 | <groupId>commons-lang</groupId> |
| 71 | <artifactId>commons-lang</artifactId> |
| 72 | <version>2.6</version> |
| 73 | </dependency> |
Michael Hanl | 2a30f42 | 2014-04-01 16:41:44 +0000 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>org.z3950.zing</groupId> |
| 76 | <artifactId>cql-java</artifactId> |
| 77 | <version>1.12</version> |
| 78 | </dependency> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 79 | </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 Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 97 | </project> |