blob: bcf54fdb319eeab76e9f744f1fe9ed5bfd0381f3 [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>
margaretha543f2002017-07-14 00:27:15 +020017 <spring-framework.version>4.3.7.RELEASE</spring-framework.version>
18 <jersey.version>1.19.4</jersey.version>
Michael Hanlca740d72015-06-16 10:04:58 +020019 </properties>
Michael Hanl840878a2015-09-21 22:38:05 +020020 <profiles>
21 <!-- mvn -Plight builds additionally the light server version with reduced functionality! -->
22 <profile>
23 <id>light</id>
24 <build>
25 <plugins>
26 <plugin>
27 <artifactId>maven-shade-plugin</artifactId>
28 <version>2.1</version>
29 <executions>
30 <!-- option 1 -->
31 <execution>
32 <id>light</id>
33 <phase>package</phase>
34 <goals>
35 <goal>shade</goal>
36 </goals>
37 <configuration>
38 <finalName>
39 Kustvakt-core-${project.version}-light
40 </finalName>
41 <transformers>
42 <transformer
43 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
44 <mainClass>
Michael Hanl482f30d2015-09-25 12:39:46 +020045 de.ids_mannheim.korap.web.KustvaktBaseServer
Michael Hanl840878a2015-09-21 22:38:05 +020046 </mainClass>
47 </transformer>
48 <transformer
49 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
50 <resource>META-INF/spring.handlers
51 </resource>
52 </transformer>
53 <transformer
54 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
55 <resource>META-INF/spring.schemas
56 </resource>
57 </transformer>
58 </transformers>
59 <!-- Additional configuration. -->
60 <!-- apparently there is a securityexception -->
61 <filters>
62 <filter>
63 <artifact>*:*</artifact>
64 <excludes>
65 <exclude>META-INF/*.SF</exclude>
66 <exclude>META-INF/*.DSA
67 </exclude>
68 <exclude>META-INF/*.RSA
69 </exclude>
70 </excludes>
71 </filter>
72 </filters>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
77 </plugins>
78 </build>
79 </profile>
80 </profiles>
Michael Hanlca740d72015-06-16 10:04:58 +020081 <build>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020082 <resources>
83 <resource>
84 <directory>src/main/resources</directory>
85 <filtering>true</filtering>
86 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +020087 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020088 <include>**/*.xml</include>
89 <include>**/*.conf</include>
Michael Hanlc0ed00f2016-06-23 14:33:10 +020090 <include>**/*.kustvakt</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020091 <include>**/*.properties</include>
Michael Hanld3c8bc82015-11-10 07:47:24 +010092 <include>**/*.sql</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020093 </includes>
94 </resource>
95 </resources>
96 <testResources>
97 <testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +020098 <directory>src/test/resources</directory>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020099 <filtering>true</filtering>
100 <includes>
101 <include>**/*.prop</include>
102 <include>**/*.xml</include>
103 <include>**/*.conf</include>
Michael Hanldaf86602016-05-12 14:31:52 +0200104 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200105 <include>**/*.properties</include>
106 </includes>
107 </testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +0200108 <testResource>
109 <directory>src/main/resources</directory>
110 <filtering>true</filtering>
111 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +0200112 <include>**/*.info</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200113 <include>**/*.properties</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200114 </includes>
115 </testResource>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200116 </testResources>
Michael Hanlca740d72015-06-16 10:04:58 +0200117 <plugins>
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200118 <!--
119 Formatter plugin for Eclipse based coding conventions
120 http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html
121 -->
122 <plugin>
123 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
124 <artifactId>maven-java-formatter-plugin</artifactId>
125 <version>0.4</version>
126 <configuration>
127 <configFile>${project.basedir}/Format.xml</configFile>
128 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
129 <compilerSource>1.7</compilerSource>
130 <compilerCompliance>1.7</compilerCompliance>
131 <compilerTargetPlatform>1.7</compilerTargetPlatform>
132 </configuration>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200133 <!--
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200134 <executions>
135 <execution>
136 <goals>
137 <goal>format</goal>
138 </goals>
139 </execution>
140 </executions>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200141 -->
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200142 </plugin>
Michael Hanlc95c0a82015-10-20 16:45:46 +0200143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-compiler-plugin</artifactId>
146 <version>3.3</version>
147 <configuration>
148 <compilerVersion>1.7</compilerVersion>
149 <source>1.7</source>
150 <target>1.7</target>
151 </configuration>
152 </plugin>
Michael Hanlf21773f2015-10-16 23:02:31 +0200153
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200154 <!-- build tests jar, so extensions can use fastjerseytest class to build rest tests -->
Bodmo3d6bd352017-04-25 11:31:39 +0200155 <!-- >plugin>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-jar-plugin</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200158 <version>2.1</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200159 <executions>
160 <execution>
161 <phase>package</phase>
162 <goals>
163 <goal>test-jar</goal>
164 </goals>
165 </execution>
166 </executions>
Bodmo3d6bd352017-04-25 11:31:39 +0200167 </plugin -->
Michael Hanlca740d72015-06-16 10:04:58 +0200168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-surefire-plugin</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200171 <version>2.19.1</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200172 <configuration>
Michael Hanldaf86602016-05-12 14:31:52 +0200173 <reuseForks>false</reuseForks>
Michael Hanl45636922016-06-03 14:00:56 +0200174 <forkCount>2</forkCount>
Michael Hanldaf86602016-05-12 14:31:52 +0200175 <threadCount>10</threadCount>
176
Michael Hanlca740d72015-06-16 10:04:58 +0200177 <excludes>
178 <exclude>**/*APITest.java</exclude>
Michael Hanldaf86602016-05-12 14:31:52 +0200179 <exclude>de/ids_mannheim/korap/suites/*.java</exclude>
margarethafc2040a2017-04-18 12:07:23 +0200180 <exclude>**/KustvaktServerTest.java</exclude>
margaretha63daffa2017-07-07 17:09:57 +0200181 <exclude>**/ResourceServiceTest.java</exclude>
182 <exclude>**/ResourceInfoServiceTest.java</exclude>
183 <exclude>**/PolicyServiceTest.java</exclude>
Michael Hanlca740d72015-06-16 10:04:58 +0200184 </excludes>
185 <includes>
Michael Hanl83356752016-02-06 14:33:50 +0100186 <include>de/ids_mannheim/korap/**/*.java</include>
Michael Hanlca740d72015-06-16 10:04:58 +0200187 </includes>
188 </configuration>
189 </plugin>
190 <plugin>
191 <artifactId>maven-shade-plugin</artifactId>
192 <version>2.1</version>
193 <executions>
194 <!-- option 1 -->
195 <execution>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200196 <id>full</id>
197 <phase>package</phase>
198 <goals>
199 <goal>shade</goal>
200 </goals>
201 <configuration>
Michael Hanlca740d72015-06-16 10:04:58 +0200202 <transformers>
203 <transformer
204 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
205 <mainClass>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200206 de.ids_mannheim.korap.web.KustvaktServer
Michael Hanlca740d72015-06-16 10:04:58 +0200207 </mainClass>
208 </transformer>
209 <transformer
210 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
211 <resource>META-INF/spring.handlers
212 </resource>
213 </transformer>
214 <transformer
215 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
216 <resource>META-INF/spring.schemas
217 </resource>
218 </transformer>
219 </transformers>
220 <!-- Additional configuration. -->
Michael Hanl59bff812015-10-27 23:10:32 +0100221 <!-- apparently there is a securityException -->
Michael Hanlca740d72015-06-16 10:04:58 +0200222 <filters>
223 <filter>
224 <artifact>*:*</artifact>
225 <excludes>
226 <exclude>META-INF/*.SF</exclude>
227 <exclude>META-INF/*.DSA
228 </exclude>
229 <exclude>META-INF/*.RSA
230 </exclude>
231 </excludes>
232 </filter>
233 </filters>
234 </configuration>
235 </execution>
236 </executions>
237 </plugin>
238 </plugins>
239 </build>
Michael Hanlca740d72015-06-16 10:04:58 +0200240 <dependencies>
241 <dependency>
242 <groupId>com.sun.jersey</groupId>
243 <artifactId>jersey-bundle</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200244 <version>${jersey.version}</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200245 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200246 <!--EM: added -->
247 <dependency>
248 <groupId>com.sun.jersey</groupId>
249 <artifactId>jersey-server</artifactId>
250 <version>${jersey.version}</version>
251 </dependency>
252
253 <dependency>
254 <groupId>com.sun.jersey.contribs</groupId>
255 <artifactId>jersey-spring</artifactId>
256 <version>${jersey.version}</version>
257 <exclusions>
258 <exclusion>
259 <groupId>org.springframework</groupId>
260 <artifactId>spring</artifactId>
261 </exclusion>
262 <exclusion>
263 <groupId>org.springframework</groupId>
264 <artifactId>spring-core</artifactId>
265 </exclusion>
266 <exclusion>
267 <groupId>org.springframework</groupId>
268 <artifactId>spring-web</artifactId>
269 </exclusion>
270 <exclusion>
271 <groupId>org.springframework</groupId>
272 <artifactId>spring-beans</artifactId>
273 </exclusion>
274 <exclusion>
275 <groupId>org.springframework</groupId>
276 <artifactId>spring-context</artifactId>
277 </exclusion>
278 <exclusion>
279 <groupId>org.springframework</groupId>
280 <artifactId>spring-aop</artifactId>
281 </exclusion>
282 </exclusions>
283 </dependency>
284 <!-- EM:done -->
Michael Hanlca740d72015-06-16 10:04:58 +0200285 <dependency>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200286 <groupId>com.sun.jersey.jersey-test-framework</groupId>
287 <artifactId>jersey-test-framework-core</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200288 <version>${jersey.version}</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200289 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200290 </dependency>
291 <dependency>
292 <groupId>com.sun.jersey.jersey-test-framework</groupId>
293 <artifactId>jersey-test-framework-grizzly</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200294 <version>${jersey.version}</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200295 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200296 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200297 <!-- <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200298 <groupId>org.slf4j</groupId>
299 <artifactId>slf4j-api</artifactId>
300 <version>1.7.5</version>
margaretha543f2002017-07-14 00:27:15 +0200301 </dependency> -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200302 <dependency>
303 <groupId>org.slf4j</groupId>
304 <artifactId>slf4j-log4j12</artifactId>
305 <version>1.7.5</version>
306 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200307 <!-- <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200308 <groupId>log4j</groupId>
309 <artifactId>log4j</artifactId>
310 <version>1.2.17</version>
311 </dependency>
312 <dependency>
313 <groupId>log4j</groupId>
314 <artifactId>apache-log4j-extras</artifactId>
315 <version>1.2.17</version>
margaretha543f2002017-07-14 00:27:15 +0200316 </dependency> -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200317 <dependency>
318 <groupId>junit</groupId>
319 <artifactId>junit</artifactId>
margarethaade7d4a2017-07-20 19:53:35 +0200320 <version>4.12</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200321 </dependency>
322 <dependency>
323 <groupId>org.projectlombok</groupId>
324 <artifactId>lombok</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200325 <version>1.16.6</version>
Michael Hanlc8729b92015-09-02 12:37:36 +0200326 <scope>provided</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200327 </dependency>
328 <dependency>
329 <groupId>joda-time</groupId>
330 <artifactId>joda-time</artifactId>
331 <version>2.2</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200332 </dependency>
333 <dependency>
Michael Hanlcafa03e2015-06-26 17:01:16 +0200334 <groupId>de.ids_mannheim.korap</groupId>
Michael Hanlca740d72015-06-16 10:04:58 +0200335 <artifactId>Koral</artifactId>
margarethaf18298b2017-09-14 22:14:32 +0200336 <version>0.27</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200337 <exclusions>
338 <exclusion>
339 <groupId>org.eclipse.jetty</groupId>
340 <artifactId>jetty-servlet</artifactId>
341 </exclusion>
342 </exclusions>
343 </dependency>
Michael Hanlc8729b92015-09-02 12:37:36 +0200344
Michael Hanlf21773f2015-10-16 23:02:31 +0200345 <dependency>
346 <groupId>org.xerial</groupId>
347 <artifactId>sqlite-jdbc</artifactId>
348 <version>3.8.10.1</version>
349 </dependency>
350
351 <dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100352 <groupId>mysql</groupId>
353 <artifactId>mysql-connector-java</artifactId>
354 <version>5.1.6</version>
355 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200356
Michael Hanl19390652016-01-16 11:01:24 +0100357 <dependency>
Michael Hanlf21773f2015-10-16 23:02:31 +0200358 <groupId>org.apache.commons</groupId>
359 <artifactId>commons-dbcp2</artifactId>
360 <version>2.1.1</version>
361 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200362
Michael Hanl08aa7722016-06-03 13:34:37 +0200363 <dependency>
364 <groupId>commons-validator</groupId>
365 <artifactId>commons-validator</artifactId>
366 <version>1.4.0</version>
367 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200368
Michael Hanlf21773f2015-10-16 23:02:31 +0200369 <dependency>
370 <groupId>org.mindrot</groupId>
371 <artifactId>jbcrypt</artifactId>
372 <version>0.3m</version>
373 </dependency>
374
Michael Hanlca740d72015-06-16 10:04:58 +0200375 <dependency>
376 <groupId>com.nimbusds</groupId>
377 <artifactId>nimbus-jose-jwt</artifactId>
378 <version>2.10.1</version>
379 </dependency>
380
381 <dependency>
382 <groupId>de.ids_mannheim.korap</groupId>
383 <artifactId>Krill</artifactId>
Akron1118e3b2017-09-19 11:43:10 +0200384 <version>0.55.9</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200385 <exclusions>
386 <exclusion>
387 <groupId>org.xerial</groupId>
388 <artifactId>sqlite-jdbc</artifactId>
389 </exclusion>
390 </exclusions>
391 </dependency>
392 <dependency>
393 <groupId>org.reflections</groupId>
394 <artifactId>reflections</artifactId>
395 <version>0.9.9-RC1</version>
396 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200397 <!-- EM: added -->
398 <dependency>
399 <groupId>org.hibernate</groupId>
400 <artifactId>hibernate-entitymanager</artifactId>
401 <version>5.1.8.Final</version>
402 </dependency>
403 <dependency>
404 <groupId>org.hibernate</groupId>
405 <artifactId>hibernate-ehcache</artifactId>
406 <version>5.1.8.Final</version>
407 </dependency>
408
409 <dependency>
410 <groupId>org.springframework</groupId>
411 <artifactId>spring-core</artifactId>
412 <version>${spring-framework.version}</version>
413 </dependency>
414 <dependency>
415 <groupId>org.springframework</groupId>
416 <artifactId>spring-web</artifactId>
417 <version>${spring-framework.version}</version>
418 </dependency>
419 <dependency>
420 <groupId>org.springframework</groupId>
421 <artifactId>spring-asm</artifactId>
422 <version>3.1.4.RELEASE</version>
423 </dependency>
424 <dependency>
425 <groupId>org.springframework</groupId>
426 <artifactId>spring-orm</artifactId>
427 <version>${spring-framework.version}</version>
428 </dependency>
429 <!-- EM: done -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200430 <dependency>
431 <groupId>org.springframework</groupId>
432 <artifactId>spring-context</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200433 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200434 </dependency>
435 <dependency>
436 <groupId>org.springframework</groupId>
437 <artifactId>spring-context-support</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200438 <version>${spring-framework.version}</version>
Michael Hanldaf86602016-05-12 14:31:52 +0200439 </dependency>
440 <dependency>
441 <groupId>org.springframework</groupId>
442 <artifactId>spring-test</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200443 <version>${spring-framework.version}</version>
Michael Hanldaf86602016-05-12 14:31:52 +0200444 <scope>compile</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200445 </dependency>
446
447 <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this
448 -->
449 <dependency>
450 <groupId>org.springframework</groupId>
451 <artifactId>spring-aop</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200452 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200453 </dependency>
454 <dependency>
455 <groupId>org.springframework</groupId>
456 <artifactId>spring-aspects</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200457 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200458 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200459
460 <!-- copied from extension -->
461 <dependency>
462 <groupId>org.springframework</groupId>
463 <artifactId>spring-jdbc</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200464 <version>${spring-framework.version}</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200465 </dependency>
466 <dependency>
467 <groupId>org.springframework</groupId>
468 <artifactId>spring-tx</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200469 <version>${spring-framework.version}</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200470 </dependency>
471 <dependency>
472 <groupId>org.flywaydb</groupId>
473 <artifactId>flyway-core</artifactId>
Bodmob571b362017-05-03 16:22:11 +0200474 <version>4.0</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200475 </dependency>
476
margaretha543f2002017-07-14 00:27:15 +0200477 <!-- <dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200478 <groupId>net.sf.ehcache</groupId>
479 <artifactId>ehcache-core</artifactId>
480 <version>2.6.5</version>
margaretha543f2002017-07-14 00:27:15 +0200481 </dependency> -->
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200482
483 <dependency>
484 <groupId>org.apache.oltu.oauth2</groupId>
485 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
486 <version>1.0.0</version>
487 </dependency>
488
489 <!-- end copy -->
490
Michael Hanlbadd79c2015-06-19 07:41:03 +0200491 <dependency>
492 <groupId>commons-collections</groupId>
493 <artifactId>commons-collections</artifactId>
494 <version>3.2.1</version>
495 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200496 <dependency>
497 <groupId>org.eclipse.jetty</groupId>
498 <artifactId>jetty-server</artifactId>
499 <version>8.1.8.v20121106</version>
500 </dependency>
501 <dependency>
502 <groupId>org.eclipse.jetty</groupId>
503 <artifactId>jetty-servlet</artifactId>
504 <version>8.1.8.v20121106</version>
505 </dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100506 <dependency>
507 <groupId>asm</groupId>
508 <artifactId>asm</artifactId>
509 <version>3.3.1</version>
510 </dependency>
Bodmo3d6bd352017-04-25 11:31:39 +0200511 <dependency>
512 <groupId>com.novell.ldap</groupId>
513 <artifactId>jldap</artifactId>
514 <version>4.3</version>
515 </dependency>
516 <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk -->
517 <dependency>
518 <groupId>com.unboundid</groupId>
519 <artifactId>unboundid-ldapsdk</artifactId>
520 <version>3.2.1</version>
521 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200522
Michael Hanlbadd79c2015-06-19 07:41:03 +0200523 <!--
524 not part of public release
525 <dependency>
526 <groupId>KorAP-graphDB</groupId>
527 <artifactId>KorAP-graphDB</artifactId>
528 <version>1.0-SNAPSHOT</version>
529 <exclusions>
530 <exclusion>
531 <groupId>org.antlr</groupId>
532 <artifactId>antlr4-runtime</artifactId>
533 </exclusion>
534 <exclusion>
535 <groupId>org.glassfish.jersey.core</groupId>
536 <artifactId>jersey-client</artifactId>
537 </exclusion>
538 <exclusion>
539 <groupId>org.glassfish.jersey.containers</groupId>
540 <artifactId>jersey-container-grizzly2-http</artifactId>
541 </exclusion>
542 <exclusion>
543 <groupId>org.glassfish.jersey.core</groupId>
544 <artifactId>jersey-common</artifactId>
545 </exclusion>
546 <exclusion>
547 <groupId>org.glassfish.jersey.core</groupId>
548 <artifactId>jersey-server</artifactId>
549 </exclusion>
550 </exclusions>
551 </dependency>
552 -->
margaretha1a6d0202017-02-16 18:09:39 +0100553 <dependency>
554 <groupId>org.apache.httpcomponents</groupId>
555 <artifactId>httpclient</artifactId>
556 <version>4.3.3</version>
557 </dependency>
558 <dependency>
559 <groupId>commons-io</groupId>
560 <artifactId>commons-io</artifactId>
561 <version>2.4</version>
562 </dependency>
Michael Hanlca740d72015-06-16 10:04:58 +0200563 </dependencies>
564
565</project>