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> |
Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 14 | |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 15 | |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 16 | <name>KorAP-querySerialization</name> |
| 17 | <url>http://maven.apache.org</url> |
Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 18 | |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.antlr</groupId> |
| 22 | <artifactId>antlr4-runtime</artifactId> |
| 23 | <version>4.0</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>com.google.guava</groupId> |
| 27 | <artifactId>guava</artifactId> |
| 28 | <version>15.0</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>com.fasterxml.jackson.core</groupId> |
| 32 | <artifactId>jackson-databind</artifactId> |
| 33 | <version>2.2.2</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>KorAP-modules</groupId> |
| 37 | <artifactId>KorAP-PoliqarpParser</artifactId> |
| 38 | <version>0.05</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>KorAP-modules</groupId> |
| 42 | <artifactId>KorAP-Cosmas2Parser</artifactId> |
| 43 | <version>LATEST</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>KorAP-modules</groupId> |
| 47 | <artifactId>KorAP-lucene-index</artifactId> |
| 48 | <version>LATEST</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>junit</groupId> |
| 52 | <artifactId>junit</artifactId> |
| 53 | <version>4.11</version> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>joda-time</groupId> |
| 58 | <artifactId>joda-time</artifactId> |
| 59 | <version>2.2</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>commons-lang</groupId> |
| 63 | <artifactId>commons-lang</artifactId> |
| 64 | <version>2.6</version> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | <build> |
| 68 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
| 69 | <outputDirectory>${basedir}/bin</outputDirectory> |
| 70 | <plugins> |
| 71 | <plugin> |
| 72 | <artifactId>maven-compiler-plugin</artifactId> |
| 73 | <version>2.3.2</version> |
| 74 | <configuration> |
| 75 | <source>1.7</source> |
| 76 | <target>1.7</target> |
| 77 | <!-- excludes> |
| 78 | <exclude>**/CosmasTree.java</exclude> |
| 79 | </excludes --> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 84 | </project> |