blob: 2272a639c75199bf6b1c6d193ca9669c38c88822 [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>
margaretha63daffa2017-07-07 17:09:57 +0200179 <exclude>**/ResourceServiceTest.java</exclude>
180 <exclude>**/ResourceInfoServiceTest.java</exclude>
181 <exclude>**/PolicyServiceTest.java</exclude>
Michael Hanlca740d72015-06-16 10:04:58 +0200182 </excludes>
183 <includes>
Michael Hanl83356752016-02-06 14:33:50 +0100184 <include>de/ids_mannheim/korap/**/*.java</include>
Michael Hanlca740d72015-06-16 10:04:58 +0200185 </includes>
186 </configuration>
187 </plugin>
188 <plugin>
189 <artifactId>maven-shade-plugin</artifactId>
190 <version>2.1</version>
191 <executions>
192 <!-- option 1 -->
193 <execution>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200194 <id>full</id>
195 <phase>package</phase>
196 <goals>
197 <goal>shade</goal>
198 </goals>
199 <configuration>
Michael Hanlca740d72015-06-16 10:04:58 +0200200 <transformers>
201 <transformer
202 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
203 <mainClass>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200204 de.ids_mannheim.korap.web.KustvaktServer
Michael Hanlca740d72015-06-16 10:04:58 +0200205 </mainClass>
206 </transformer>
207 <transformer
208 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
209 <resource>META-INF/spring.handlers
210 </resource>
211 </transformer>
212 <transformer
213 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
214 <resource>META-INF/spring.schemas
215 </resource>
216 </transformer>
217 </transformers>
218 <!-- Additional configuration. -->
Michael Hanl59bff812015-10-27 23:10:32 +0100219 <!-- apparently there is a securityException -->
Michael Hanlca740d72015-06-16 10:04:58 +0200220 <filters>
221 <filter>
222 <artifact>*:*</artifact>
223 <excludes>
224 <exclude>META-INF/*.SF</exclude>
225 <exclude>META-INF/*.DSA
226 </exclude>
227 <exclude>META-INF/*.RSA
228 </exclude>
229 </excludes>
230 </filter>
231 </filters>
232 </configuration>
233 </execution>
234 </executions>
235 </plugin>
236 </plugins>
237 </build>
Michael Hanlca740d72015-06-16 10:04:58 +0200238 <dependencies>
239 <dependency>
240 <groupId>com.sun.jersey</groupId>
241 <artifactId>jersey-bundle</artifactId>
242 <version>1.8</version>
243 </dependency>
244 <dependency>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200245 <groupId>com.sun.jersey.jersey-test-framework</groupId>
246 <artifactId>jersey-test-framework-core</artifactId>
247 <version>1.19</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200248 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200249 </dependency>
250 <dependency>
251 <groupId>com.sun.jersey.jersey-test-framework</groupId>
252 <artifactId>jersey-test-framework-grizzly</artifactId>
253 <version>1.19</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200254 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200255 </dependency>
256 <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200257 <groupId>org.slf4j</groupId>
258 <artifactId>slf4j-api</artifactId>
259 <version>1.7.5</version>
260 </dependency>
261 <dependency>
262 <groupId>org.slf4j</groupId>
263 <artifactId>slf4j-log4j12</artifactId>
264 <version>1.7.5</version>
265 </dependency>
266 <dependency>
267 <groupId>log4j</groupId>
268 <artifactId>log4j</artifactId>
269 <version>1.2.17</version>
270 </dependency>
271 <dependency>
272 <groupId>log4j</groupId>
273 <artifactId>apache-log4j-extras</artifactId>
274 <version>1.2.17</version>
275 </dependency>
276 <dependency>
277 <groupId>junit</groupId>
278 <artifactId>junit</artifactId>
279 <version>4.11</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200280 <scope>test</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200281 </dependency>
282 <dependency>
283 <groupId>org.projectlombok</groupId>
284 <artifactId>lombok</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200285 <version>1.16.6</version>
Michael Hanlc8729b92015-09-02 12:37:36 +0200286 <scope>provided</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200287 </dependency>
288 <dependency>
289 <groupId>joda-time</groupId>
290 <artifactId>joda-time</artifactId>
291 <version>2.2</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200292 </dependency>
293 <dependency>
Michael Hanlcafa03e2015-06-26 17:01:16 +0200294 <groupId>de.ids_mannheim.korap</groupId>
Michael Hanlca740d72015-06-16 10:04:58 +0200295 <artifactId>Koral</artifactId>
margarethaa89c3f92017-05-30 19:02:08 +0200296 <version>0.26</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200297 <exclusions>
298 <exclusion>
299 <groupId>org.eclipse.jetty</groupId>
300 <artifactId>jetty-servlet</artifactId>
301 </exclusion>
302 </exclusions>
303 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200304 <!--
305 <dependency>
306 <groupId>com.sun.jersey</groupId>
307 <artifactId>jersey-grizzly2</artifactId>
308 <version>1.8</version>
309 </dependency>
310 <dependency>
311 <groupId>com.sun.grizzly</groupId>
312 <artifactId>grizzly-servlet-webserver</artifactId>
313 <version>1.9.18-i</version>
314 </dependency>
315 -->
Michael Hanlc8729b92015-09-02 12:37:36 +0200316
Michael Hanlf21773f2015-10-16 23:02:31 +0200317 <dependency>
318 <groupId>org.xerial</groupId>
319 <artifactId>sqlite-jdbc</artifactId>
320 <version>3.8.10.1</version>
321 </dependency>
322
323 <dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100324 <groupId>mysql</groupId>
325 <artifactId>mysql-connector-java</artifactId>
326 <version>5.1.6</version>
327 </dependency>
328
329 <dependency>
Michael Hanlf21773f2015-10-16 23:02:31 +0200330 <groupId>org.apache.commons</groupId>
331 <artifactId>commons-dbcp2</artifactId>
332 <version>2.1.1</version>
333 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200334<!--
Michael Hanlf21773f2015-10-16 23:02:31 +0200335 <dependency>
336 <groupId>org.owasp.esapi</groupId>
337 <artifactId>esapi</artifactId>
338 <version>2.1.0</version>
339 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200340-->
Michael Hanl08aa7722016-06-03 13:34:37 +0200341 <dependency>
342 <groupId>commons-validator</groupId>
343 <artifactId>commons-validator</artifactId>
344 <version>1.4.0</version>
345 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200346
Michael Hanlf21773f2015-10-16 23:02:31 +0200347 <dependency>
348 <groupId>org.mindrot</groupId>
349 <artifactId>jbcrypt</artifactId>
350 <version>0.3m</version>
351 </dependency>
352
Michael Hanlca740d72015-06-16 10:04:58 +0200353 <dependency>
354 <groupId>com.nimbusds</groupId>
355 <artifactId>nimbus-jose-jwt</artifactId>
356 <version>2.10.1</version>
357 </dependency>
358
359 <dependency>
360 <groupId>de.ids_mannheim.korap</groupId>
361 <artifactId>Krill</artifactId>
margaretha3fc0fd42017-05-02 18:08:31 +0200362 <version>0.55.8</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200363 <exclusions>
364 <exclusion>
365 <groupId>org.xerial</groupId>
366 <artifactId>sqlite-jdbc</artifactId>
367 </exclusion>
368 </exclusions>
369 </dependency>
370 <dependency>
371 <groupId>org.reflections</groupId>
372 <artifactId>reflections</artifactId>
373 <version>0.9.9-RC1</version>
374 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200375 <!-- deprecated? -->
Michael Hanl2760cc42015-11-16 19:30:01 +0100376 <!--<dependency>-->
Michael Hanl19390652016-01-16 11:01:24 +0100377 <!--<groupId>com.restfuse</groupId>-->
378 <!--<artifactId>com.eclipsesource.restfuse</artifactId>-->
379 <!--<version>1.0.0</version>-->
380 <!--<scope>provided</scope>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100381 <!--</dependency>-->
Michael Hanl1e18cb42015-08-06 20:57:35 +0200382 <!-- deprecated -->
383 <!--<dependency>-->
384 <!--<groupId>com.jayway.restassured</groupId>-->
385 <!--<artifactId>rest-assured</artifactId>-->
386 <!--<version>2.4.0</version>-->
387 <!--<scope>provided</scope>-->
388 <!--</dependency>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100389 <!--<dependency>-->
Michael Hanl19390652016-01-16 11:01:24 +0100390 <!--<groupId>org.springframework</groupId>-->
391 <!--<artifactId>spring-core</artifactId>-->
392 <!--<version>4.0.5.RELEASE</version>-->
Michael Hanl2760cc42015-11-16 19:30:01 +0100393 <!--</dependency>-->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200394 <dependency>
395 <groupId>org.springframework</groupId>
396 <artifactId>spring-context</artifactId>
397 <version>4.0.5.RELEASE</version>
398 </dependency>
399 <dependency>
400 <groupId>org.springframework</groupId>
401 <artifactId>spring-context-support</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200402 <version>4.1.6.RELEASE</version>
403 </dependency>
404 <dependency>
405 <groupId>org.springframework</groupId>
406 <artifactId>spring-test</artifactId>
407 <version>4.1.6.RELEASE</version>
408 <scope>compile</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200409 </dependency>
410
411 <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this
412 -->
413 <dependency>
414 <groupId>org.springframework</groupId>
415 <artifactId>spring-aop</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200416 <version>4.1.6.RELEASE</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200417 </dependency>
418 <dependency>
419 <groupId>org.springframework</groupId>
420 <artifactId>spring-aspects</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200421 <version>4.1.6.RELEASE</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200422 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200423
424 <!-- copied from extension -->
425 <dependency>
426 <groupId>org.springframework</groupId>
427 <artifactId>spring-jdbc</artifactId>
428 <version>4.1.6.RELEASE</version>
429 </dependency>
430 <dependency>
431 <groupId>org.springframework</groupId>
432 <artifactId>spring-tx</artifactId>
433 <version>4.1.6.RELEASE</version>
434 </dependency>
435 <dependency>
436 <groupId>org.flywaydb</groupId>
437 <artifactId>flyway-core</artifactId>
Bodmob571b362017-05-03 16:22:11 +0200438 <!-- version>3.2.1</version -->
439 <version>4.0</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200440 </dependency>
441
442 <dependency>
443 <groupId>net.sf.ehcache</groupId>
444 <artifactId>ehcache-core</artifactId>
445 <version>2.6.5</version>
446 </dependency>
447
448 <dependency>
449 <groupId>org.apache.oltu.oauth2</groupId>
450 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
451 <version>1.0.0</version>
452 </dependency>
453
454 <!-- end copy -->
455
Michael Hanlbadd79c2015-06-19 07:41:03 +0200456 <dependency>
457 <groupId>commons-collections</groupId>
458 <artifactId>commons-collections</artifactId>
459 <version>3.2.1</version>
460 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200461 <dependency>
462 <groupId>org.eclipse.jetty</groupId>
463 <artifactId>jetty-server</artifactId>
464 <version>8.1.8.v20121106</version>
465 </dependency>
466 <dependency>
467 <groupId>org.eclipse.jetty</groupId>
468 <artifactId>jetty-servlet</artifactId>
469 <version>8.1.8.v20121106</version>
470 </dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100471 <dependency>
472 <groupId>asm</groupId>
473 <artifactId>asm</artifactId>
474 <version>3.3.1</version>
475 </dependency>
Bodmo3d6bd352017-04-25 11:31:39 +0200476 <dependency>
477 <groupId>com.novell.ldap</groupId>
478 <artifactId>jldap</artifactId>
479 <version>4.3</version>
480 </dependency>
481 <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk -->
482 <dependency>
483 <groupId>com.unboundid</groupId>
484 <artifactId>unboundid-ldapsdk</artifactId>
485 <version>3.2.1</version>
486 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200487
Michael Hanlbadd79c2015-06-19 07:41:03 +0200488 <!--
489 not part of public release
490 <dependency>
491 <groupId>KorAP-graphDB</groupId>
492 <artifactId>KorAP-graphDB</artifactId>
493 <version>1.0-SNAPSHOT</version>
494 <exclusions>
495 <exclusion>
496 <groupId>org.antlr</groupId>
497 <artifactId>antlr4-runtime</artifactId>
498 </exclusion>
499 <exclusion>
500 <groupId>org.glassfish.jersey.core</groupId>
501 <artifactId>jersey-client</artifactId>
502 </exclusion>
503 <exclusion>
504 <groupId>org.glassfish.jersey.containers</groupId>
505 <artifactId>jersey-container-grizzly2-http</artifactId>
506 </exclusion>
507 <exclusion>
508 <groupId>org.glassfish.jersey.core</groupId>
509 <artifactId>jersey-common</artifactId>
510 </exclusion>
511 <exclusion>
512 <groupId>org.glassfish.jersey.core</groupId>
513 <artifactId>jersey-server</artifactId>
514 </exclusion>
515 </exclusions>
516 </dependency>
517 -->
margaretha1a6d0202017-02-16 18:09:39 +0100518 <dependency>
519 <groupId>org.apache.httpcomponents</groupId>
520 <artifactId>httpclient</artifactId>
521 <version>4.3.3</version>
522 </dependency>
523 <dependency>
524 <groupId>commons-io</groupId>
525 <artifactId>commons-io</artifactId>
526 <version>2.4</version>
527 </dependency>
Michael Hanlca740d72015-06-16 10:04:58 +0200528 </dependencies>
529
530</project>