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" |
| 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 | |
| 5 | <groupId>de.ids_mannheim.korap.query</groupId> |
| 6 | <artifactId>xerialize</artifactId> |
| 7 | <version>0.0.1</version> |
| 8 | <packaging>jar</packaging> |
| 9 | |
| 10 | <name>xerialize</name> |
| 11 | <url>http://maven.apache.org</url> |
| 12 | |
| 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | </properties> |
| 16 | |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>junit</groupId> |
| 20 | <artifactId>junit</artifactId> |
| 21 | <version>3.8.1</version> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.antlr</groupId> |
| 26 | <artifactId>antlr4</artifactId> |
| 27 | <version>4.1</version> |
| 28 | <classifier>complete</classifier> |
| 29 | </dependency> |
| 30 | </dependencies> |
| 31 | |
| 32 | <build> |
| 33 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
| 34 | <outputDirectory>${basedir}/bin</outputDirectory> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
| 38 | <version>2.3.2</version> |
| 39 | <configuration> |
| 40 | <source>1.7</source> |
| 41 | <target>1.7</target> |
| 42 | </configuration> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | </project> |