Nils Diewald | f399a67 | 2013-11-18 17:55:22 +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</groupId> |
| 6 | <artifactId>KorAP-lucene-index</artifactId> |
| 7 | <version>0.20</version> |
| 8 | <packaging>jar</packaging> |
| 9 | |
| 10 | <name>KorAP-lucene-index</name> |
| 11 | <url>http://www.ids-mannheim.de/</url> |
| 12 | |
| 13 | <organization> |
| 14 | <name>IDS Mannheim</name> |
| 15 | <url>http://www.ids-mannheim.de/</url> |
| 16 | </organization> |
| 17 | |
| 18 | <developers> |
| 19 | <developer> |
| 20 | <name>Nils Diewald</name> |
| 21 | <email>diewald@ids-mannheim.de</email> |
| 22 | <url>http://nils-diewald.de</url> |
| 23 | </developer> |
| 24 | </developers> |
| 25 | |
| 26 | <properties> |
| 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | </properties> |
| 29 | |
| 30 | <dependencies> |
| 31 | |
| 32 | <!-- junit dependency --> |
| 33 | <dependency> |
| 34 | <groupId>junit</groupId> |
| 35 | <artifactId>junit</artifactId> |
| 36 | <version>4.11</version> |
| 37 | <scope>test</scope> |
| 38 | </dependency> |
| 39 | |
| 40 | <!-- log4j dependency --> |
| 41 | <dependency> |
| 42 | <groupId>log4j</groupId> |
| 43 | <artifactId>log4j</artifactId> |
| 44 | <version>1.2.17</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.slf4j</groupId> |
| 48 | <artifactId>slf4j-log4j12</artifactId> |
| 49 | <version>1.7.5</version> |
| 50 | </dependency> |
| 51 | |
| 52 | <!-- Lucene core dependency --> |
| 53 | <dependency> |
| 54 | <artifactId>lucene-core</artifactId> |
| 55 | <groupId>org.apache.lucene</groupId> |
| 56 | <type>jar</type> |
| 57 | <version>4.3.0</version> |
| 58 | </dependency> |
| 59 | |
| 60 | <!-- Lucene queryparser dependency --> |
| 61 | <dependency> |
| 62 | <artifactId>lucene-queryparser</artifactId> |
| 63 | <groupId>org.apache.lucene</groupId> |
| 64 | <type>jar</type> |
| 65 | <version>4.3.0</version> |
| 66 | </dependency> |
| 67 | |
| 68 | <!-- Lucene analyzers dependency --> |
| 69 | <dependency> |
| 70 | <artifactId>lucene-analyzers-common</artifactId> |
| 71 | <groupId>org.apache.lucene</groupId> |
| 72 | <type>jar</type> |
| 73 | <version>4.3.0</version> |
| 74 | </dependency> |
| 75 | |
| 76 | <!-- JCache --> |
| 77 | <dependency> |
| 78 | <groupId>net.sf.jsr107cache</groupId> |
| 79 | <artifactId>jsr107cache</artifactId> |
| 80 | <version>1.0</version> |
| 81 | </dependency> |
| 82 | |
| 83 | <!-- Jackson --> |
| 84 | <!-- see https://github.com/FasterXML/jackson-core --> |
| 85 | <!-- https://github.com/FasterXML/jackson-databind --> |
| 86 | <dependency> |
| 87 | <groupId>com.fasterxml.jackson.core</groupId> |
| 88 | <artifactId>jackson-databind</artifactId> |
| 89 | <version>2.2.2</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>com.fasterxml.jackson.core</groupId> |
| 93 | <artifactId>jackson-annotations</artifactId> |
| 94 | <version>2.2.2</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>com.fasterxml.jackson.core</groupId> |
| 98 | <artifactId>jackson-core</artifactId> |
| 99 | <version>2.2.2</version> |
| 100 | </dependency> |
| 101 | |
| 102 | </dependencies> |
| 103 | |
| 104 | <build> |
| 105 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
| 106 | <outputDirectory>${basedir}/bin</outputDirectory> |
| 107 | <plugins> |
| 108 | <plugin> |
| 109 | <artifactId>maven-compiler-plugin</artifactId> |
| 110 | <version>2.3.2</version> |
| 111 | <configuration> |
| 112 | <source>1.7</source> |
| 113 | <target>1.7</target> |
| 114 | </configuration> |
| 115 | </plugin> |
| 116 | <!-- |
| 117 | <plugin> |
| 118 | <artifactId>maven-surefire-plugin</artifactId> |
| 119 | <version>2.1.3</version> |
| 120 | <configuration> |
| 121 | <test>**/*TestSuite*</test> |
| 122 | <useFile>false</useFile> |
| 123 | <parallel>methods</parallel> |
| 124 | <threadCount>10</threadCount> |
| 125 | </configuration> |
| 126 | </plugin> |
| 127 | --> |
| 128 | </plugins> |
| 129 | </build> |
| 130 | </project> |