blob: 4628b48c25cd1bfa27f6a855ceb3a91a17f2f9b0 [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>
margarethaf68daa62017-09-21 02:11:24 +020020 <!-- <profiles>
21 mvn -Plight builds additionally the light server version with reduced functionality!
Michael Hanl840878a2015-09-21 22:38:05 +020022 <profile>
23 <id>light</id>
24 <build>
25 <plugins>
26 <plugin>
27 <artifactId>maven-shade-plugin</artifactId>
28 <version>2.1</version>
29 <executions>
margarethaf68daa62017-09-21 02:11:24 +020030 option 1
Michael Hanl840878a2015-09-21 22:38:05 +020031 <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>
margarethaf68daa62017-09-21 02:11:24 +020059 Additional configuration.
60 apparently there is a securityexception
Michael Hanl840878a2015-09-21 22:38:05 +020061 <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>
margarethaf68daa62017-09-21 02:11:24 +020081 -->
82 <build>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020083 <resources>
84 <resource>
85 <directory>src/main/resources</directory>
86 <filtering>true</filtering>
87 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +020088 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020089 <include>**/*.xml</include>
90 <include>**/*.conf</include>
Michael Hanlc0ed00f2016-06-23 14:33:10 +020091 <include>**/*.kustvakt</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020092 <include>**/*.properties</include>
Michael Hanld3c8bc82015-11-10 07:47:24 +010093 <include>**/*.sql</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +020094 </includes>
95 </resource>
96 </resources>
97 <testResources>
98 <testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +020099 <directory>src/test/resources</directory>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200100 <filtering>true</filtering>
101 <includes>
102 <include>**/*.prop</include>
103 <include>**/*.xml</include>
104 <include>**/*.conf</include>
Michael Hanldaf86602016-05-12 14:31:52 +0200105 <include>**/*.info</include>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200106 <include>**/*.properties</include>
107 </includes>
108 </testResource>
Michael Hanlf21773f2015-10-16 23:02:31 +0200109 <testResource>
110 <directory>src/main/resources</directory>
111 <filtering>true</filtering>
112 <includes>
Michael Hanldaf86602016-05-12 14:31:52 +0200113 <include>**/*.info</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200114 <include>**/*.properties</include>
Michael Hanlf21773f2015-10-16 23:02:31 +0200115 </includes>
116 </testResource>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200117 </testResources>
Michael Hanlca740d72015-06-16 10:04:58 +0200118 <plugins>
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200119 <!--
120 Formatter plugin for Eclipse based coding conventions
121 http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html
122 -->
123 <plugin>
124 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
125 <artifactId>maven-java-formatter-plugin</artifactId>
126 <version>0.4</version>
127 <configuration>
128 <configFile>${project.basedir}/Format.xml</configFile>
129 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
130 <compilerSource>1.7</compilerSource>
131 <compilerCompliance>1.7</compilerCompliance>
132 <compilerTargetPlatform>1.7</compilerTargetPlatform>
133 </configuration>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200134 <!--
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200135 <executions>
136 <execution>
137 <goals>
138 <goal>format</goal>
139 </goals>
140 </execution>
141 </executions>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200142 -->
Michael Hanl8abaf9e2016-05-23 16:46:35 +0200143 </plugin>
Michael Hanlc95c0a82015-10-20 16:45:46 +0200144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-compiler-plugin</artifactId>
147 <version>3.3</version>
148 <configuration>
149 <compilerVersion>1.7</compilerVersion>
150 <source>1.7</source>
151 <target>1.7</target>
152 </configuration>
153 </plugin>
Michael Hanlf21773f2015-10-16 23:02:31 +0200154
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200155 <!-- build tests jar, so extensions can use fastjerseytest class to build rest tests -->
Bodmo3d6bd352017-04-25 11:31:39 +0200156 <!-- >plugin>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-jar-plugin</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200159 <version>2.1</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200160 <executions>
161 <execution>
162 <phase>package</phase>
163 <goals>
164 <goal>test-jar</goal>
165 </goals>
166 </execution>
167 </executions>
Bodmo3d6bd352017-04-25 11:31:39 +0200168 </plugin -->
Michael Hanlca740d72015-06-16 10:04:58 +0200169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-surefire-plugin</artifactId>
Michael Hanldaf86602016-05-12 14:31:52 +0200172 <version>2.19.1</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200173 <configuration>
Michael Hanldaf86602016-05-12 14:31:52 +0200174 <reuseForks>false</reuseForks>
Michael Hanl45636922016-06-03 14:00:56 +0200175 <forkCount>2</forkCount>
Michael Hanldaf86602016-05-12 14:31:52 +0200176 <threadCount>10</threadCount>
177
Michael Hanlca740d72015-06-16 10:04:58 +0200178 <excludes>
179 <exclude>**/*APITest.java</exclude>
Michael Hanldaf86602016-05-12 14:31:52 +0200180 <exclude>de/ids_mannheim/korap/suites/*.java</exclude>
margarethafc2040a2017-04-18 12:07:23 +0200181 <exclude>**/KustvaktServerTest.java</exclude>
margaretha63daffa2017-07-07 17:09:57 +0200182 <exclude>**/ResourceServiceTest.java</exclude>
183 <exclude>**/ResourceInfoServiceTest.java</exclude>
184 <exclude>**/PolicyServiceTest.java</exclude>
Michael Hanlca740d72015-06-16 10:04:58 +0200185 </excludes>
186 <includes>
Michael Hanl83356752016-02-06 14:33:50 +0100187 <include>de/ids_mannheim/korap/**/*.java</include>
Michael Hanlca740d72015-06-16 10:04:58 +0200188 </includes>
189 </configuration>
190 </plugin>
191 <plugin>
192 <artifactId>maven-shade-plugin</artifactId>
193 <version>2.1</version>
194 <executions>
195 <!-- option 1 -->
196 <execution>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200197 <id>full</id>
198 <phase>package</phase>
199 <goals>
200 <goal>shade</goal>
201 </goals>
202 <configuration>
Michael Hanlca740d72015-06-16 10:04:58 +0200203 <transformers>
204 <transformer
205 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
206 <mainClass>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200207 de.ids_mannheim.korap.web.KustvaktServer
Michael Hanlca740d72015-06-16 10:04:58 +0200208 </mainClass>
209 </transformer>
210 <transformer
211 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
212 <resource>META-INF/spring.handlers
213 </resource>
214 </transformer>
215 <transformer
216 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
217 <resource>META-INF/spring.schemas
218 </resource>
219 </transformer>
220 </transformers>
221 <!-- Additional configuration. -->
Michael Hanl59bff812015-10-27 23:10:32 +0100222 <!-- apparently there is a securityException -->
Michael Hanlca740d72015-06-16 10:04:58 +0200223 <filters>
224 <filter>
225 <artifact>*:*</artifact>
226 <excludes>
227 <exclude>META-INF/*.SF</exclude>
228 <exclude>META-INF/*.DSA
229 </exclude>
230 <exclude>META-INF/*.RSA
231 </exclude>
232 </excludes>
233 </filter>
234 </filters>
235 </configuration>
236 </execution>
237 </executions>
238 </plugin>
239 </plugins>
240 </build>
Michael Hanlca740d72015-06-16 10:04:58 +0200241 <dependencies>
242 <dependency>
243 <groupId>com.sun.jersey</groupId>
244 <artifactId>jersey-bundle</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200245 <version>${jersey.version}</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200246 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200247 <!--EM: added -->
248 <dependency>
249 <groupId>com.sun.jersey</groupId>
250 <artifactId>jersey-server</artifactId>
251 <version>${jersey.version}</version>
252 </dependency>
253
254 <dependency>
255 <groupId>com.sun.jersey.contribs</groupId>
256 <artifactId>jersey-spring</artifactId>
257 <version>${jersey.version}</version>
258 <exclusions>
259 <exclusion>
260 <groupId>org.springframework</groupId>
261 <artifactId>spring</artifactId>
262 </exclusion>
263 <exclusion>
264 <groupId>org.springframework</groupId>
265 <artifactId>spring-core</artifactId>
266 </exclusion>
267 <exclusion>
268 <groupId>org.springframework</groupId>
269 <artifactId>spring-web</artifactId>
270 </exclusion>
271 <exclusion>
272 <groupId>org.springframework</groupId>
273 <artifactId>spring-beans</artifactId>
274 </exclusion>
275 <exclusion>
276 <groupId>org.springframework</groupId>
277 <artifactId>spring-context</artifactId>
278 </exclusion>
279 <exclusion>
280 <groupId>org.springframework</groupId>
281 <artifactId>spring-aop</artifactId>
282 </exclusion>
283 </exclusions>
284 </dependency>
285 <!-- EM:done -->
Michael Hanlca740d72015-06-16 10:04:58 +0200286 <dependency>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200287 <groupId>com.sun.jersey.jersey-test-framework</groupId>
288 <artifactId>jersey-test-framework-core</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200289 <version>${jersey.version}</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200290 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200291 </dependency>
292 <dependency>
293 <groupId>com.sun.jersey.jersey-test-framework</groupId>
294 <artifactId>jersey-test-framework-grizzly</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200295 <version>${jersey.version}</version>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200296 <scope>test</scope>
Michael Hanl1e18cb42015-08-06 20:57:35 +0200297 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200298 <!-- <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200299 <groupId>org.slf4j</groupId>
300 <artifactId>slf4j-api</artifactId>
301 <version>1.7.5</version>
margaretha543f2002017-07-14 00:27:15 +0200302 </dependency> -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200303 <dependency>
304 <groupId>org.slf4j</groupId>
305 <artifactId>slf4j-log4j12</artifactId>
306 <version>1.7.5</version>
307 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200308 <!-- <dependency>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200309 <groupId>log4j</groupId>
310 <artifactId>log4j</artifactId>
311 <version>1.2.17</version>
312 </dependency>
313 <dependency>
314 <groupId>log4j</groupId>
315 <artifactId>apache-log4j-extras</artifactId>
316 <version>1.2.17</version>
margaretha543f2002017-07-14 00:27:15 +0200317 </dependency> -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200318 <dependency>
319 <groupId>junit</groupId>
320 <artifactId>junit</artifactId>
margarethaade7d4a2017-07-20 19:53:35 +0200321 <version>4.12</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200322 </dependency>
323 <dependency>
324 <groupId>org.projectlombok</groupId>
325 <artifactId>lombok</artifactId>
Michael Hanlf21773f2015-10-16 23:02:31 +0200326 <version>1.16.6</version>
Michael Hanlc8729b92015-09-02 12:37:36 +0200327 <scope>provided</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200328 </dependency>
329 <dependency>
330 <groupId>joda-time</groupId>
331 <artifactId>joda-time</artifactId>
332 <version>2.2</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200333 </dependency>
334 <dependency>
Michael Hanlcafa03e2015-06-26 17:01:16 +0200335 <groupId>de.ids_mannheim.korap</groupId>
Michael Hanlca740d72015-06-16 10:04:58 +0200336 <artifactId>Koral</artifactId>
margarethaf18298b2017-09-14 22:14:32 +0200337 <version>0.27</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200338 <exclusions>
339 <exclusion>
340 <groupId>org.eclipse.jetty</groupId>
341 <artifactId>jetty-servlet</artifactId>
342 </exclusion>
343 </exclusions>
344 </dependency>
Michael Hanlc8729b92015-09-02 12:37:36 +0200345
Michael Hanlf21773f2015-10-16 23:02:31 +0200346 <dependency>
347 <groupId>org.xerial</groupId>
348 <artifactId>sqlite-jdbc</artifactId>
349 <version>3.8.10.1</version>
350 </dependency>
351
352 <dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100353 <groupId>mysql</groupId>
354 <artifactId>mysql-connector-java</artifactId>
355 <version>5.1.6</version>
356 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200357
Michael Hanl19390652016-01-16 11:01:24 +0100358 <dependency>
Michael Hanlf21773f2015-10-16 23:02:31 +0200359 <groupId>org.apache.commons</groupId>
360 <artifactId>commons-dbcp2</artifactId>
361 <version>2.1.1</version>
362 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200363
Michael Hanl08aa7722016-06-03 13:34:37 +0200364 <dependency>
365 <groupId>commons-validator</groupId>
366 <artifactId>commons-validator</artifactId>
367 <version>1.4.0</version>
368 </dependency>
Michael Hanlc0ed00f2016-06-23 14:33:10 +0200369
Michael Hanlf21773f2015-10-16 23:02:31 +0200370 <dependency>
371 <groupId>org.mindrot</groupId>
372 <artifactId>jbcrypt</artifactId>
373 <version>0.3m</version>
374 </dependency>
375
Michael Hanlca740d72015-06-16 10:04:58 +0200376 <dependency>
377 <groupId>com.nimbusds</groupId>
378 <artifactId>nimbus-jose-jwt</artifactId>
379 <version>2.10.1</version>
380 </dependency>
381
382 <dependency>
383 <groupId>de.ids_mannheim.korap</groupId>
384 <artifactId>Krill</artifactId>
Akron1118e3b2017-09-19 11:43:10 +0200385 <version>0.55.9</version>
Michael Hanlca740d72015-06-16 10:04:58 +0200386 <exclusions>
387 <exclusion>
388 <groupId>org.xerial</groupId>
389 <artifactId>sqlite-jdbc</artifactId>
390 </exclusion>
391 </exclusions>
392 </dependency>
393 <dependency>
394 <groupId>org.reflections</groupId>
395 <artifactId>reflections</artifactId>
396 <version>0.9.9-RC1</version>
397 </dependency>
margaretha543f2002017-07-14 00:27:15 +0200398 <!-- EM: added -->
399 <dependency>
400 <groupId>org.hibernate</groupId>
401 <artifactId>hibernate-entitymanager</artifactId>
402 <version>5.1.8.Final</version>
403 </dependency>
404 <dependency>
405 <groupId>org.hibernate</groupId>
406 <artifactId>hibernate-ehcache</artifactId>
407 <version>5.1.8.Final</version>
408 </dependency>
409
410 <dependency>
411 <groupId>org.springframework</groupId>
412 <artifactId>spring-core</artifactId>
413 <version>${spring-framework.version}</version>
414 </dependency>
415 <dependency>
416 <groupId>org.springframework</groupId>
417 <artifactId>spring-web</artifactId>
418 <version>${spring-framework.version}</version>
419 </dependency>
420 <dependency>
421 <groupId>org.springframework</groupId>
422 <artifactId>spring-asm</artifactId>
423 <version>3.1.4.RELEASE</version>
424 </dependency>
425 <dependency>
426 <groupId>org.springframework</groupId>
427 <artifactId>spring-orm</artifactId>
428 <version>${spring-framework.version}</version>
429 </dependency>
430 <!-- EM: done -->
Michael Hanlbadd79c2015-06-19 07:41:03 +0200431 <dependency>
432 <groupId>org.springframework</groupId>
433 <artifactId>spring-context</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200434 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200435 </dependency>
436 <dependency>
437 <groupId>org.springframework</groupId>
438 <artifactId>spring-context-support</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200439 <version>${spring-framework.version}</version>
Michael Hanldaf86602016-05-12 14:31:52 +0200440 </dependency>
441 <dependency>
442 <groupId>org.springframework</groupId>
443 <artifactId>spring-test</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200444 <version>${spring-framework.version}</version>
Michael Hanldaf86602016-05-12 14:31:52 +0200445 <scope>compile</scope>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200446 </dependency>
447
448 <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this
449 -->
450 <dependency>
451 <groupId>org.springframework</groupId>
452 <artifactId>spring-aop</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200453 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200454 </dependency>
455 <dependency>
456 <groupId>org.springframework</groupId>
457 <artifactId>spring-aspects</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200458 <version>${spring-framework.version}</version>
Michael Hanlbadd79c2015-06-19 07:41:03 +0200459 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200460
461 <!-- copied from extension -->
462 <dependency>
463 <groupId>org.springframework</groupId>
464 <artifactId>spring-jdbc</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200465 <version>${spring-framework.version}</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200466 </dependency>
467 <dependency>
468 <groupId>org.springframework</groupId>
469 <artifactId>spring-tx</artifactId>
margaretha543f2002017-07-14 00:27:15 +0200470 <version>${spring-framework.version}</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200471 </dependency>
472 <dependency>
473 <groupId>org.flywaydb</groupId>
474 <artifactId>flyway-core</artifactId>
Bodmob571b362017-05-03 16:22:11 +0200475 <version>4.0</version>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200476 </dependency>
477
margaretha543f2002017-07-14 00:27:15 +0200478 <!-- <dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200479 <groupId>net.sf.ehcache</groupId>
480 <artifactId>ehcache-core</artifactId>
481 <version>2.6.5</version>
margaretha543f2002017-07-14 00:27:15 +0200482 </dependency> -->
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200483
484 <dependency>
485 <groupId>org.apache.oltu.oauth2</groupId>
486 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
487 <version>1.0.0</version>
488 </dependency>
489
490 <!-- end copy -->
491
Michael Hanlbadd79c2015-06-19 07:41:03 +0200492 <dependency>
493 <groupId>commons-collections</groupId>
494 <artifactId>commons-collections</artifactId>
495 <version>3.2.1</version>
496 </dependency>
Michael Hanl0f6ffd72015-08-27 19:23:15 +0200497 <dependency>
498 <groupId>org.eclipse.jetty</groupId>
499 <artifactId>jetty-server</artifactId>
500 <version>8.1.8.v20121106</version>
501 </dependency>
502 <dependency>
503 <groupId>org.eclipse.jetty</groupId>
504 <artifactId>jetty-servlet</artifactId>
505 <version>8.1.8.v20121106</version>
506 </dependency>
Michael Hanl19390652016-01-16 11:01:24 +0100507 <dependency>
508 <groupId>asm</groupId>
509 <artifactId>asm</artifactId>
510 <version>3.3.1</version>
511 </dependency>
Bodmo3d6bd352017-04-25 11:31:39 +0200512 <dependency>
513 <groupId>com.novell.ldap</groupId>
514 <artifactId>jldap</artifactId>
515 <version>4.3</version>
516 </dependency>
517 <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk -->
518 <dependency>
519 <groupId>com.unboundid</groupId>
520 <artifactId>unboundid-ldapsdk</artifactId>
521 <version>3.2.1</version>
522 </dependency>
Michael Hanl9f8d90c2015-09-14 16:13:54 +0200523
Michael Hanlbadd79c2015-06-19 07:41:03 +0200524 <!--
525 not part of public release
526 <dependency>
527 <groupId>KorAP-graphDB</groupId>
528 <artifactId>KorAP-graphDB</artifactId>
529 <version>1.0-SNAPSHOT</version>
530 <exclusions>
531 <exclusion>
532 <groupId>org.antlr</groupId>
533 <artifactId>antlr4-runtime</artifactId>
534 </exclusion>
535 <exclusion>
536 <groupId>org.glassfish.jersey.core</groupId>
537 <artifactId>jersey-client</artifactId>
538 </exclusion>
539 <exclusion>
540 <groupId>org.glassfish.jersey.containers</groupId>
541 <artifactId>jersey-container-grizzly2-http</artifactId>
542 </exclusion>
543 <exclusion>
544 <groupId>org.glassfish.jersey.core</groupId>
545 <artifactId>jersey-common</artifactId>
546 </exclusion>
547 <exclusion>
548 <groupId>org.glassfish.jersey.core</groupId>
549 <artifactId>jersey-server</artifactId>
550 </exclusion>
551 </exclusions>
552 </dependency>
553 -->
margaretha1a6d0202017-02-16 18:09:39 +0100554 <dependency>
555 <groupId>org.apache.httpcomponents</groupId>
556 <artifactId>httpclient</artifactId>
557 <version>4.3.3</version>
558 </dependency>
559 <dependency>
560 <groupId>commons-io</groupId>
561 <artifactId>commons-io</artifactId>
562 <version>2.4</version>
563 </dependency>
Michael Hanlca740d72015-06-16 10:04:58 +0200564 </dependencies>
565
566</project>