blob: ebbc7219413c053499c44d73af09a514646221b6 [file] [log] [blame]
Michael Hanlca740d72015-06-16 10:04:58 +02001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Hanlca740d72015-06-16 10:04:58 +02004 <modelVersion>4.0.0</modelVersion>
Michael Hanlbadd79c2015-06-19 07:41:03 +02005 <groupId>de.ids_mannheim.korap</groupId>
Michael Hanlca740d72015-06-16 10:04:58 +02006 <artifactId>Kustvakt-core</artifactId>
Akron78e2d202016-10-13 14:17:11 +02007 <version>0.59.7</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +02008 <packaging>jar</packaging>
9 <name>Kustvakt core</name>
10 <description>Kustvakt core, basic rest api for testing purposes and default
11 interfaces
12 </description>
Michael Hanlca740d72015-06-16 10:04:58 +020013 <properties>
14 <maven.compiler.source>1.7</maven.compiler.source>
15 <maven.compiler.target>1.7</maven.compiler.target>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 </properties>
Michael Hanl840878a2015-09-21 22:38:05 +020018 <profiles>
19 <!-- mvn -Plight builds additionally the light server version with reduced functionality! -->
20 <profile>
21 <id>light</id>
22 <build>
23 <plugins>
24 <plugin>
25 <artifactId>maven-shade-plugin</artifactId>
26 <version>2.1</version>
27 <executions>
28 <!-- option 1 -->
29 <execution>
30 <id>light</id>
31 <phase>package</phase>
32 <goals>
33 <goal>shade</goal>
34 </goals>
35 <configuration>
36 <finalName>
37 Kustvakt-core-${project.version}-light
38 </finalName>
39 <transformers>
40 <transformer
41 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
42 <mainClass>
Michael Hanl482f30d2015-09-25 12:39:46 +020043 de.ids_mannheim.korap.web.KustvaktBaseServer
Michael Hanl840878a2015-09-21 22:38:05 +020044 </mainClass>
45 </transformer>
46 <transformer
47 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
48 <resource>META-INF/spring.handlers
49 </resource>
50 </transformer>
51 <transformer
52 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
53 <resource>META-INF/spring.schemas
54 </resource>
55 </transformer>
56 </transformers>
57 <!-- Additional configuration. -->
58 <!-- apparently there is a securityexception -->
59 <filters>
60 <filter>
61 <artifact>*:*</artifact>
62 <excludes>
63 <exclude>META-INF/*.SF</exclude>
64 <exclude>META-INF/*.DSA
65 </exclude>
66 <exclude>META-INF/*.RSA
67 </exclude>
68 </excludes>
69 </filter>
70 </filters>
71 </configuration>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77 </profile>
78 </profiles>
Michael Hanlca740d72015-06-16 10:04:58 +020079 <build>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020080 <resources>
81 <resource>
82 <directory>src/main/resources</directory>
83 <filtering>true</filtering>
84 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +020085 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020086 <include>**/*.xml</include>
87 <include>**/*.conf</include>
Michael Hanlc0ed00f2016-06-23 14:33:10 +020088 <include>**/*.kustvakt</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020089 <include>**/*.properties</include>
Michael Hanld3c8bc82015-11-10 07:47:24 +010090 <include>**/*.sql</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020091 </includes>
92 </resource>
93 </resources>
94 <testResources>
95 <testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +020096 <directory>src/test/resources</directory>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020097 <filtering>true</filtering>
98 <includes>
99 <include>**/*.prop</include>
100 <include>**/*.xml</include>
101 <include>**/*.conf</include>
Michael Hanldaf86602016-05-12 14:31:52 +0200102 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200103 <include>**/*.properties</include>
104 </includes>
105 </testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +0200106 <testResource>
107 <directory>src/main/resources</directory>
108 <filtering>true</filtering>
109 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +0200110 <include>**/*.info</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200111 <include>**/*.properties</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200112 </includes>
113 </testResource>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200114 </testResources>
Michael Hanlca740d72015-06-16 10:04:58 +0200115 <plugins>
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200116 <!--
117 Formatter plugin for Eclipse based coding conventions
118 http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html
119 -->
120 <plugin>
121 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
122 <artifactId>maven-java-formatter-plugin</artifactId>
123 <version>0.4</version>
124 <configuration>
125 <configFile>${project.basedir}/Format.xml</configFile>
126 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
127 <compilerSource>1.7</compilerSource>
128 <compilerCompliance>1.7</compilerCompliance>
129 <compilerTargetPlatform>1.7</compilerTargetPlatform>
130 </configuration>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200131 <!--
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200132 <executions>
133 <execution>
134 <goals>
135 <goal>format</goal>
136 </goals>
137 </execution>
138 </executions>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200139 -->
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200140 </plugin>
Michael Hanlc95c0a82015-10-20 16:45:46 +0200141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-compiler-plugin</artifactId>
144 <version>3.3</version>
145 <configuration>
146 <compilerVersion>1.7</compilerVersion>
147 <source>1.7</source>
148 <target>1.7</target>
149 </configuration>
150 </plugin>
Michael Hanlf21773f2015-10-16 23:02:31 +0200151
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200152 <!-- build tests jar, so extensions can use fastjerseytest class to build rest tests -->
Bodmo3d6bd352017-04-25 11:31:39 +0200153 <!-- >plugin>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-jar-plugin</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200156 <version>2.1</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200157 <executions>
158 <execution>
159 <phase>package</phase>
160 <goals>
161 <goal>test-jar</goal>
162 </goals>
163 </execution>
164 </executions>
Bodmo3d6bd352017-04-25 11:31:39 +0200165 </plugin -->
Michael Hanlca740d72015-06-16 10:04:58 +0200166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-surefire-plugin</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200169 <version>2.19.1</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200170 <configuration>
Michael Hanldaf86602016-05-12 14:31:52 +0200171 <reuseForks>false</reuseForks>
Michael Hanl45636922016-06-03 14:00:56 +0200172 <forkCount>2</forkCount>
Michael Hanldaf86602016-05-12 14:31:52 +0200173 <threadCount>10</threadCount>
174
Michael Hanlca740d72015-06-16 10:04:58 +0200175 <excludes>
176 <exclude>**/*APITest.java</exclude>
Michael Hanldaf86602016-05-12 14:31:52 +0200177 <exclude>de/ids_mannheim/korap/suites/*.java</exclude>
margarethafc2040a2017-04-18 12:07:23 +0200178 <exclude>**/KustvaktServerTest.java</exclude>
Michael Hanlca740d72015-06-16 10:04:58 +0200179 </excludes>
180 <includes>
Michael Hanl83356752016-02-06 14:33:50 +0100181 <include>de/ids_mannheim/korap/**/*.java</include>
Michael Hanlca740d72015-06-16 10:04:58 +0200182 </includes>
183 </configuration>
184 </plugin>
185 <plugin>
186 <artifactId>maven-shade-plugin</artifactId>
187 <version>2.1</version>
188 <executions>
189 <!-- option 1 -->
190 <execution>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200191 <id>full</id>
192 <phase>package</phase>
193 <goals>
194 <goal>shade</goal>
195 </goals>
196 <configuration>
Michael Hanlca740d72015-06-16 10:04:58 +0200197 <transformers>
198 <transformer
199 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
200 <mainClass>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200201 de.ids_mannheim.korap.web.KustvaktServer
Michael Hanlca740d72015-06-16 10:04:58 +0200202 </mainClass>
203 </transformer>
204 <transformer
205 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
206 <resource>META-INF/spring.handlers
207 </resource>
208 </transformer>
209 <transformer
210 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
211 <resource>META-INF/spring.schemas
212 </resource>
213 </transformer>
214 </transformers>
215 <!-- Additional configuration. -->
Michael Hanl59bff812015-10-27 23:10:32 +0100216 <!-- apparently there is a securityException -->
Michael Hanlca740d72015-06-16 10:04:58 +0200217 <filters>
218 <filter>
219 <artifact>*:*</artifact>
220 <excludes>
221 <exclude>META-INF/*.SF</exclude>
222 <exclude>META-INF/*.DSA
223 </exclude>
224 <exclude>META-INF/*.RSA
225 </exclude>
226 </excludes>
227 </filter>
228 </filters>
229 </configuration>
230 </execution>
231 </executions>
232 </plugin>
233 </plugins>
234 </build>
Michael Hanlca740d72015-06-16 10:04:58 +0200235 <dependencies>
236 <dependency>
237 <groupId>com.sun.jersey</groupId>
238 <artifactId>jersey-bundle</artifactId>
239 <version>1.8</version>
240 </dependency>
241 <dependency>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200242 <groupId>com.sun.jersey.jersey-test-framework</groupId>
243 <artifactId>jersey-test-framework-core</artifactId>
244 <version>1.19</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200245 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200246 </dependency>
247 <dependency>
248 <groupId>com.sun.jersey.jersey-test-framework</groupId>
249 <artifactId>jersey-test-framework-grizzly</artifactId>
250 <version>1.19</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200251 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200252 </dependency>
253 <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200254 <groupId>org.slf4j</groupId>
255 <artifactId>slf4j-api</artifactId>
256 <version>1.7.5</version>
257 </dependency>
258 <dependency>
259 <groupId>org.slf4j</groupId>
260 <artifactId>slf4j-log4j12</artifactId>
261 <version>1.7.5</version>
262 </dependency>
263 <dependency>
264 <groupId>log4j</groupId>
265 <artifactId>log4j</artifactId>
266 <version>1.2.17</version>
267 </dependency>
268 <dependency>
269 <groupId>log4j</groupId>
270 <artifactId>apache-log4j-extras</artifactId>
271 <version>1.2.17</version>
272 </dependency>
273 <dependency>
274 <groupId>junit</groupId>
275 <artifactId>junit</artifactId>
276 <version>4.11</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200277 <scope>test</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200278 </dependency>
279 <dependency>
280 <groupId>org.projectlombok</groupId>
281 <artifactId>lombok</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200282 <version>1.16.6</version>
Michael Hanlc8729b92015-09-02 12:37:36 +0200283 <scope>provided</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200284 </dependency>
285 <dependency>
286 <groupId>joda-time</groupId>
287 <artifactId>joda-time</artifactId>
288 <version>2.2</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200289 </dependency>
290 <dependency>
Michael Hanlcafa03e2015-06-26 17:01:16 +0200291 <groupId>de.ids_mannheim.korap</groupId>
Michael Hanlca740d72015-06-16 10:04:58 +0200292 <artifactId>Koral</artifactId>
Bodmo3d6bd352017-04-25 11:31:39 +0200293 <version>0.23</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200294 <exclusions>
295 <exclusion>
296 <groupId>org.eclipse.jetty</groupId>
297 <artifactId>jetty-servlet</artifactId>
298 </exclusion>
299 </exclusions>
300 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200301 <!--
302 <dependency>
303 <groupId>com.sun.jersey</groupId>
304 <artifactId>jersey-grizzly2</artifactId>
305 <version>1.8</version>
306 </dependency>
307 <dependency>
308 <groupId>com.sun.grizzly</groupId>
309 <artifactId>grizzly-servlet-webserver</artifactId>
310 <version>1.9.18-i</version>
311 </dependency>
312 -->
Michael Hanlc8729b92015-09-02 12:37:36 +0200313
Michael Hanlf21773f2015-10-16 23:02:31 +0200314 <dependency>
315 <groupId>org.xerial</groupId>
316 <artifactId>sqlite-jdbc</artifactId>
317 <version>3.8.10.1</version>
318 </dependency>
319
320 <dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100321 <groupId>mysql</groupId>
322 <artifactId>mysql-connector-java</artifactId>
323 <version>5.1.6</version>
324 </dependency>
325
326 <dependency>
Michael Hanlf21773f2015-10-16 23:02:31 +0200327 <groupId>org.apache.commons</groupId>
328 <artifactId>commons-dbcp2</artifactId>
329 <version>2.1.1</version>
330 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200331<!--
Michael Hanlf21773f2015-10-16 23:02:31 +0200332 <dependency>
333 <groupId>org.owasp.esapi</groupId>
334 <artifactId>esapi</artifactId>
335 <version>2.1.0</version>
336 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200337-->
Michael Hanl08aa7722016-06-03 13:34:37 +0200338 <dependency>
339 <groupId>commons-validator</groupId>
340 <artifactId>commons-validator</artifactId>
341 <version>1.4.0</version>
342 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200343
Michael Hanlf21773f2015-10-16 23:02:31 +0200344 <dependency>
345 <groupId>org.mindrot</groupId>
346 <artifactId>jbcrypt</artifactId>
347 <version>0.3m</version>
348 </dependency>
349
Michael Hanlca740d72015-06-16 10:04:58 +0200350 <dependency>
351 <groupId>com.nimbusds</groupId>
352 <artifactId>nimbus-jose-jwt</artifactId>
353 <version>2.10.1</version>
354 </dependency>
355
356 <dependency>
357 <groupId>de.ids_mannheim.korap</groupId>
358 <artifactId>Krill</artifactId>
Akron78e2d202016-10-13 14:17:11 +0200359 <version>0.55.7</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200360 <exclusions>
361 <exclusion>
362 <groupId>org.xerial</groupId>
363 <artifactId>sqlite-jdbc</artifactId>
364 </exclusion>
365 </exclusions>
366 </dependency>
367 <dependency>
368 <groupId>org.reflections</groupId>
369 <artifactId>reflections</artifactId>
370 <version>0.9.9-RC1</version>
371 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200372 <!-- deprecated? -->
Michael Hanl2760cc42015-11-16 19:30:01 +0100373 <!--<dependency>-->
Michael Hanl19390652016-01-16 11:01:24 +0100374 <!--<groupId>com.restfuse</groupId>-->
375 <!--<artifactId>com.eclipsesource.restfuse</artifactId>-->
376 <!--<version>1.0.0</version>-->
377 <!--<scope>provided</scope>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100378 <!--</dependency>-->
Michael Hanl1e18cb42015-08-06 20:57:35 +0200379 <!-- deprecated -->
380 <!--<dependency>-->
381 <!--<groupId>com.jayway.restassured</groupId>-->
382 <!--<artifactId>rest-assured</artifactId>-->
383 <!--<version>2.4.0</version>-->
384 <!--<scope>provided</scope>-->
385 <!--</dependency>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100386 <!--<dependency>-->
Michael Hanl19390652016-01-16 11:01:24 +0100387 <!--<groupId>org.springframework</groupId>-->
388 <!--<artifactId>spring-core</artifactId>-->
389 <!--<version>4.0.5.RELEASE</version>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100390 <!--</dependency>-->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200391 <dependency>
392 <groupId>org.springframework</groupId>
393 <artifactId>spring-context</artifactId>
394 <version>4.0.5.RELEASE</version>
395 </dependency>
396 <dependency>
397 <groupId>org.springframework</groupId>
398 <artifactId>spring-context-support</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200399 <version>4.1.6.RELEASE</version>
400 </dependency>
401 <dependency>
402 <groupId>org.springframework</groupId>
403 <artifactId>spring-test</artifactId>
404 <version>4.1.6.RELEASE</version>
405 <scope>compile</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200406 </dependency>
407
408 <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this
409 -->
410 <dependency>
411 <groupId>org.springframework</groupId>
412 <artifactId>spring-aop</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200413 <version>4.1.6.RELEASE</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200414 </dependency>
415 <dependency>
416 <groupId>org.springframework</groupId>
417 <artifactId>spring-aspects</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200418 <version>4.1.6.RELEASE</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200419 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200420
421 <!-- copied from extension -->
422 <dependency>
423 <groupId>org.springframework</groupId>
424 <artifactId>spring-jdbc</artifactId>
425 <version>4.1.6.RELEASE</version>
426 </dependency>
427 <dependency>
428 <groupId>org.springframework</groupId>
429 <artifactId>spring-tx</artifactId>
430 <version>4.1.6.RELEASE</version>
431 </dependency>
432 <dependency>
433 <groupId>org.flywaydb</groupId>
434 <artifactId>flyway-core</artifactId>
435 <version>3.2.1</version>
436 </dependency>
437
438 <dependency>
439 <groupId>net.sf.ehcache</groupId>
440 <artifactId>ehcache-core</artifactId>
441 <version>2.6.5</version>
442 </dependency>
443
444 <dependency>
445 <groupId>org.apache.oltu.oauth2</groupId>
446 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
447 <version>1.0.0</version>
448 </dependency>
449
450 <!-- end copy -->
451
Michael Hanlbadd79c2015-06-19 07:41:03 +0200452 <dependency>
453 <groupId>commons-collections</groupId>
454 <artifactId>commons-collections</artifactId>
455 <version>3.2.1</version>
456 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200457 <dependency>
458 <groupId>org.eclipse.jetty</groupId>
459 <artifactId>jetty-server</artifactId>
460 <version>8.1.8.v20121106</version>
461 </dependency>
462 <dependency>
463 <groupId>org.eclipse.jetty</groupId>
464 <artifactId>jetty-servlet</artifactId>
465 <version>8.1.8.v20121106</version>
466 </dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100467 <dependency>
468 <groupId>asm</groupId>
469 <artifactId>asm</artifactId>
470 <version>3.3.1</version>
471 </dependency>
Bodmo3d6bd352017-04-25 11:31:39 +0200472 <dependency>
473 <groupId>com.novell.ldap</groupId>
474 <artifactId>jldap</artifactId>
475 <version>4.3</version>
476 </dependency>
477 <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk -->
478 <dependency>
479 <groupId>com.unboundid</groupId>
480 <artifactId>unboundid-ldapsdk</artifactId>
481 <version>3.2.1</version>
482 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200483
Michael Hanlbadd79c2015-06-19 07:41:03 +0200484 <!--
485 not part of public release
486 <dependency>
487 <groupId>KorAP-graphDB</groupId>
488 <artifactId>KorAP-graphDB</artifactId>
489 <version>1.0-SNAPSHOT</version>
490 <exclusions>
491 <exclusion>
492 <groupId>org.antlr</groupId>
493 <artifactId>antlr4-runtime</artifactId>
494 </exclusion>
495 <exclusion>
496 <groupId>org.glassfish.jersey.core</groupId>
497 <artifactId>jersey-client</artifactId>
498 </exclusion>
499 <exclusion>
500 <groupId>org.glassfish.jersey.containers</groupId>
501 <artifactId>jersey-container-grizzly2-http</artifactId>
502 </exclusion>
503 <exclusion>
504 <groupId>org.glassfish.jersey.core</groupId>
505 <artifactId>jersey-common</artifactId>
506 </exclusion>
507 <exclusion>
508 <groupId>org.glassfish.jersey.core</groupId>
509 <artifactId>jersey-server</artifactId>
510 </exclusion>
511 </exclusions>
512 </dependency>
513 -->
margaretha1a6d0202017-02-16 18:09:39 +0100514 <dependency>
515 <groupId>org.apache.httpcomponents</groupId>
516 <artifactId>httpclient</artifactId>
517 <version>4.3.3</version>
518 </dependency>
519 <dependency>
520 <groupId>commons-io</groupId>
521 <artifactId>commons-io</artifactId>
522 <version>2.4</version>
523 </dependency>
Michael Hanlca740d72015-06-16 10:04:58 +0200524 </dependencies>
525
526</project>