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