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> |
Nils Diewald | 97b6638 | 2014-02-11 00:32:23 +0000 | [diff] [blame] | 4 | |
Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 5 | <!-- |
Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 6 | ** Server |
Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 7 | # Start the server with |
Akron | cb165f5 | 2015-08-24 16:20:48 +0200 | [diff] [blame] | 8 | $ mvn compile exec:java |
Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 9 | |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 10 | # Or after packaging |
| 11 | $ mvn clean package |
| 12 | # with |
| 13 | $ java -jar target/Krill-Server.jar |
| 14 | |
| 15 | |
Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 16 | ** Formatter |
| 17 | # Format the code with |
| 18 | $ mvn java-formatter:format |
| 19 | |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 20 | ** Indexer after packaging (see above) |
| 21 | $ java -jar target/Krill-Indexer.jar |
Akron | c5e73b8 | 2016-01-14 17:01:18 +0100 | [diff] [blame] | 22 | -cfg src/main/resources/krill.properties |
Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 23 | /data/hdd/lucene-new/WPD/ |
Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 24 | --> |
| 25 | |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 26 | <groupId>de.ids_mannheim.korap</groupId> |
Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 27 | <artifactId>Krill</artifactId> |
Akron | a7b936d | 2016-03-04 13:40:54 +0100 | [diff] [blame] | 28 | <version>0.55.4</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 29 | <packaging>jar</packaging> |
| 30 | |
Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 31 | <name>Krill</name> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 32 | <url>http://www.ids-mannheim.de/</url> |
| 33 | |
| 34 | <organization> |
| 35 | <name>IDS Mannheim</name> |
| 36 | <url>http://www.ids-mannheim.de/</url> |
| 37 | </organization> |
| 38 | |
| 39 | <developers> |
| 40 | <developer> |
| 41 | <name>Nils Diewald</name> |
| 42 | <email>diewald@ids-mannheim.de</email> |
| 43 | <url>http://nils-diewald.de</url> |
| 44 | </developer> |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 45 | <developer> |
| 46 | <name>Eliza Margaretha</name> |
| 47 | <email>margaretha@ids-mannheim.de</email> |
| 48 | </developer> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 49 | </developers> |
| 50 | |
| 51 | <properties> |
Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 52 | <jersey.version>2.15</jersey.version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 53 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 54 | </properties> |
| 55 | |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 56 | <dependencyManagement> |
| 57 | <dependencies> |
| 58 | <dependency> |
| 59 | <groupId>org.glassfish.jersey</groupId> |
| 60 | <artifactId>jersey-bom</artifactId> |
| 61 | <version>${jersey.version}</version> |
| 62 | <type>pom</type> |
| 63 | <scope>import</scope> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | </dependencyManagement> |
| 67 | |
Eliza Margaretha | a929f27 | 2014-11-28 14:10:05 +0000 | [diff] [blame] | 68 | <dependencies> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 69 | <!-- junit dependency --> |
| 70 | <dependency> |
| 71 | <groupId>junit</groupId> |
| 72 | <artifactId>junit</artifactId> |
| 73 | <version>4.11</version> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | |
| 77 | <!-- log4j dependency --> |
| 78 | <dependency> |
| 79 | <groupId>log4j</groupId> |
| 80 | <artifactId>log4j</artifactId> |
| 81 | <version>1.2.17</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.slf4j</groupId> |
| 85 | <artifactId>slf4j-log4j12</artifactId> |
| 86 | <version>1.7.5</version> |
| 87 | </dependency> |
Marc Kupietz | a61d2ba | 2015-03-20 16:30:26 +0100 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.slf4j</groupId> |
| 90 | <artifactId>jul-to-slf4j</artifactId> |
| 91 | <version>1.7.5</version> |
| 92 | </dependency> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 93 | |
Nils Diewald | 6aa929e | 2014-09-17 13:30:34 +0000 | [diff] [blame] | 94 | <!-- SQLite for database connection tests --> |
| 95 | <dependency> |
| 96 | <groupId>org.xerial</groupId> |
| 97 | <artifactId>sqlite-jdbc</artifactId> |
| 98 | <version>3.7.2</version> |
| 99 | </dependency> |
| 100 | |
| 101 | <!-- Database Connection Pool Manager --> |
| 102 | <dependency> |
| 103 | <groupId>c3p0</groupId> |
| 104 | <artifactId>c3p0</artifactId> |
| 105 | <version>0.9.1.2</version> |
| 106 | </dependency> |
Nils Diewald | e26f03f | 2014-06-04 17:48:53 +0000 | [diff] [blame] | 107 | |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 108 | <!-- Lucene core dependency --> |
| 109 | <dependency> |
| 110 | <artifactId>lucene-core</artifactId> |
| 111 | <groupId>org.apache.lucene</groupId> |
| 112 | <type>jar</type> |
Akron | 700c1eb | 2015-09-25 16:57:30 +0200 | [diff] [blame] | 113 | <version>5.0.0</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 114 | </dependency> |
| 115 | |
| 116 | <!-- Lucene queryparser dependency --> |
| 117 | <dependency> |
| 118 | <artifactId>lucene-queryparser</artifactId> |
| 119 | <groupId>org.apache.lucene</groupId> |
| 120 | <type>jar</type> |
Akron | 700c1eb | 2015-09-25 16:57:30 +0200 | [diff] [blame] | 121 | <version>5.0.0</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 122 | </dependency> |
| 123 | |
| 124 | <!-- Lucene analyzers dependency --> |
| 125 | <dependency> |
| 126 | <artifactId>lucene-analyzers-common</artifactId> |
| 127 | <groupId>org.apache.lucene</groupId> |
| 128 | <type>jar</type> |
Akron | 700c1eb | 2015-09-25 16:57:30 +0200 | [diff] [blame] | 129 | <version>5.0.0</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 130 | </dependency> |
| 131 | |
Nils Diewald | 8a1fc01 | 2014-02-19 15:23:33 +0000 | [diff] [blame] | 132 | <dependency> |
| 133 | <groupId>org.hamcrest</groupId> |
| 134 | <artifactId>hamcrest-core</artifactId> |
| 135 | <version>1.3</version> |
| 136 | </dependency> |
| 137 | |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 138 | <!-- JCache --> |
| 139 | <dependency> |
| 140 | <groupId>net.sf.jsr107cache</groupId> |
| 141 | <artifactId>jsr107cache</artifactId> |
| 142 | <version>1.0</version> |
| 143 | </dependency> |
| 144 | |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 145 | <!-- Jersey --> |
| 146 | <dependency> |
| 147 | <groupId>org.glassfish.jersey.containers</groupId> |
| 148 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 149 | </dependency> |
| 150 | |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 151 | <!-- JSON support in Jersey --> |
Marc Kupietz | a61d2ba | 2015-03-20 16:30:26 +0100 | [diff] [blame] | 152 | <dependency> |
| 153 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 154 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 155 | <version>2.4.4</version> |
| 156 | </dependency> |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 157 | |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 158 | <!-- JSON support using Jackson --> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 159 | <!-- see https://github.com/FasterXML/jackson-core --> |
| 160 | <!-- https://github.com/FasterXML/jackson-databind --> |
| 161 | <dependency> |
| 162 | <groupId>com.fasterxml.jackson.core</groupId> |
| 163 | <artifactId>jackson-databind</artifactId> |
Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 164 | <version>2.4.4</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>com.fasterxml.jackson.core</groupId> |
| 168 | <artifactId>jackson-annotations</artifactId> |
Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 169 | <version>2.4.4</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>com.fasterxml.jackson.core</groupId> |
| 173 | <artifactId>jackson-core</artifactId> |
Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 174 | <version>2.4.4</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 175 | </dependency> |
Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 176 | |
| 177 | <!-- JSON-LD support --> |
| 178 | <!-- |
| 179 | <dependency> |
| 180 | <groupId>com.github.jsonld-java</groupId> |
| 181 | <artifactId>jsonld-java</artifactId> |
| 182 | <version>0.5.2-SNAPSHOT</version> |
| 183 | </dependency> |
Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 184 | |
Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 185 | Temporarily disable @Experimental annotation |
Eliza Margaretha | a929f27 | 2014-11-28 14:10:05 +0000 | [diff] [blame] | 186 | <dependency> |
Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 187 | <groupId>KorapAnnotationProcessor</groupId> |
| 188 | <artifactId>KorapAnnotationProcessor</artifactId> |
| 189 | <version>0.0.1-SNAPSHOT</version> |
| 190 | <scope>compile</scope> |
| 191 | </dependency> |
Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 192 | --> |
| 193 | |
Akron | 484c3c1 | 2015-07-07 20:25:44 +0200 | [diff] [blame] | 194 | <!-- Some language extensions like StringUtil --> |
| 195 | <dependency> |
| 196 | <groupId>commons-lang</groupId> |
| 197 | <artifactId>commons-lang</artifactId> |
| 198 | <version>2.3</version> |
| 199 | </dependency> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 200 | </dependencies> |
| 201 | |
| 202 | <build> |
| 203 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
| 204 | <outputDirectory>${basedir}/bin</outputDirectory> |
| 205 | <plugins> |
| 206 | <plugin> |
Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 207 | <artifactId>maven-compiler-plugin</artifactId> |
| 208 | <version>2.5.1</version> |
| 209 | <inherited>true</inherited> |
| 210 | <configuration> |
| 211 | <showWarnings>true</showWarnings> |
| 212 | <source>1.7</source> |
| 213 | <target>1.7</target> |
| 214 | </configuration> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 215 | </plugin> |
Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 216 | |
Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 217 | <plugin> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 218 | <groupId>org.apache.maven.plugins</groupId> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 219 | <artifactId>maven-shade-plugin</artifactId> |
| 220 | <version>2.4.1</version> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 221 | <executions> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 222 | <execution> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 223 | <id>indexer</id> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 224 | <phase>package</phase> |
| 225 | <goals> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 226 | <goal>shade</goal> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 227 | </goals> |
| 228 | <configuration> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 229 | <transformers> |
| 230 | <transformer |
| 231 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 232 | <mainClass>de.ids_mannheim.korap.index.Indexer</mainClass> |
| 233 | </transformer> |
| 234 | </transformers> |
| 235 | <finalName>${project.artifactId}-Indexer</finalName> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 236 | </configuration> |
| 237 | </execution> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 238 | <execution> |
| 239 | <id>server</id> |
| 240 | <phase>package</phase> |
| 241 | <goals> |
| 242 | <goal>shade</goal> |
| 243 | </goals> |
| 244 | <configuration> |
| 245 | <transformers> |
| 246 | <transformer |
| 247 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 248 | <mainClass>de.ids_mannheim.korap.server.Node</mainClass> |
| 249 | </transformer> |
| 250 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 251 | <resource>krill.properties</resource> |
| 252 | </transformer> |
| 253 | </transformers> |
| 254 | <finalName>${project.name}-Server</finalName> |
| 255 | </configuration> |
| 256 | </execution> |
| 257 | </executions> |
Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 258 | </plugin> |
Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 259 | |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 260 | <plugin> |
Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 261 | <groupId>org.apache.maven.plugins</groupId> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 262 | <artifactId>maven-surefire-plugin</artifactId> |
Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 263 | <version>2.16</version> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 264 | <configuration> |
Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 265 | <excludes> |
Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 266 | <exclude>**/benchmark/*</exclude> |
Eliza Margaretha | 78d2cd1 | 2014-03-10 12:44:40 +0000 | [diff] [blame] | 267 | <exclude>**/TestWPDIndex.java</exclude> |
Nils Diewald | 32912a6 | 2014-11-11 01:57:45 +0000 | [diff] [blame] | 268 | <exclude>**/TestRealIndex.java</exclude> |
Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 269 | </excludes> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 270 | </configuration> |
| 271 | </plugin> |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 272 | |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 273 | <!-- |
Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 274 | Formatter plugin for Eclipse based coding conventions |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 275 | http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 276 | --> |
| 277 | <plugin> |
| 278 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 279 | <artifactId>maven-java-formatter-plugin</artifactId> |
| 280 | <version>0.4</version> |
Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 281 | <configuration> |
Nils Diewald | 857c958 | 2015-03-03 21:16:14 +0000 | [diff] [blame] | 282 | <configFile>${project.basedir}/Format.xml</configFile> |
Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 283 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
| 284 | <compilerSource>1.7</compilerSource> |
| 285 | <compilerCompliance>1.7</compilerCompliance> |
| 286 | <compilerTargetPlatform>1.7</compilerTargetPlatform> |
| 287 | </configuration> |
Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 288 | </plugin> |
| 289 | |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 290 | <plugin> |
| 291 | <groupId>org.codehaus.mojo</groupId> |
| 292 | <artifactId>exec-maven-plugin</artifactId> |
| 293 | <version>1.2.1</version> |
| 294 | <executions> |
| 295 | <execution> |
| 296 | <goals> |
| 297 | <goal>java</goal> |
| 298 | </goals> |
| 299 | </execution> |
| 300 | </executions> |
| 301 | <configuration> |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 302 | <mainClass>de.ids_mannheim.korap.server.Node</mainClass> |
Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 303 | </configuration> |
| 304 | </plugin> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 305 | </plugins> |
Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 306 | |
| 307 | <resources> |
| 308 | <resource> |
| 309 | <directory>src/main/resources</directory> |
| 310 | <filtering>true</filtering> |
| 311 | <includes> |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 312 | <include>krill.properties</include> |
Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 313 | </includes> |
| 314 | </resource> |
| 315 | <resource> |
| 316 | <directory>src/main/resources</directory> |
| 317 | <filtering>false</filtering> |
| 318 | <excludes> |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 319 | <exclude>krill.properties</exclude> |
Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 320 | </excludes> |
| 321 | </resource> |
| 322 | </resources> |
| 323 | |
| 324 | <testResources> |
| 325 | <testResource> |
| 326 | <directory>src/test/resources</directory> |
| 327 | <filtering>true</filtering> |
| 328 | <includes> |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 329 | <include>krill.properties</include> |
Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 330 | </includes> |
| 331 | </testResource> |
| 332 | <testResource> |
| 333 | <directory>src/test/resources</directory> |
| 334 | <filtering>false</filtering> |
| 335 | <excludes> |
Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 336 | <exclude>krill.properties</exclude> |
Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 337 | </excludes> |
| 338 | </testResource> |
| 339 | </testResources> |
Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 340 | </build> |
| 341 | </project> |