blob: 44ce9da7e6ff764574deddfd93bd45567a19eb6b [file] [log] [blame]
margarethaf68daa62017-09-21 02:11:24 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
margaretha0ddaed62021-01-21 17:10:33 +01002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
margarethaf68daa62017-09-21 02:11:24 +02003 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.ids_mannheim.korap</groupId>
5 <artifactId>Kustvakt-core</artifactId>
margarethad66a6832022-03-03 08:47:13 +01006 <version>0.65.2</version>
margarethaf68daa62017-09-21 02:11:24 +02007
8 <properties>
margaretha2c019fa2018-02-01 19:50:51 +01009 <java.version>1.8</java.version>
margarethaf68daa62017-09-21 02:11:24 +020010 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
dependabot[bot]371751c2022-02-17 17:03:05 +000011 <spring.version>5.3.16</spring.version>
margarethaf68daa62017-09-21 02:11:24 +020012 <jersey.version>1.19.4</jersey.version>
dependabot[bot]284fe0d2022-02-07 17:02:12 +000013 <jetty.version>9.4.45.v20220203</jetty.version>
dependabot[bot]8e416ad2022-01-25 17:01:51 +000014 <hibernate.version>5.6.5.Final</hibernate.version>
dependabot[bot]95d3bc82022-02-14 17:02:28 +000015 <flyway.version>8.5.0</flyway.version>
margaretha2d523b62022-01-03 13:48:06 +010016 <log4j.version>[2.17.1,)</log4j.version>
margarethaad1300b2021-12-13 17:36:29 +010017 <krill.version>[0.60.2,)</krill.version>
18 <koral.version>[0.38.1,)</koral.version>
margarethaf68daa62017-09-21 02:11:24 +020019 </properties>
margaretha77bf8b72020-12-04 13:47:48 +010020
margarethaf68daa62017-09-21 02:11:24 +020021 <build>
22 <resources>
23 <resource>
24 <directory>src/main/resources</directory>
margarethaa8c364b2021-02-19 13:00:31 +010025 <filtering>true</filtering>
margarethaf68daa62017-09-21 02:11:24 +020026 </resource>
27 </resources>
28 <testResources>
29 <testResource>
30 <directory>src/test/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +020031 </testResource>
32 <testResource>
33 <directory>src/main/resources</directory>
margarethaf68daa62017-09-21 02:11:24 +020034 </testResource>
35 </testResources>
36 <plugins>
37 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
38 <plugin>
39 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
40 <artifactId>maven-java-formatter-plugin</artifactId>
Marc Kupietz9f1794c2020-03-25 08:24:57 +010041 <version>0.4</version>
margarethaf68daa62017-09-21 02:11:24 +020042 <configuration>
43 <configFile>${project.basedir}/Format.xml</configFile>
44 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
margaretha2c019fa2018-02-01 19:50:51 +010045 <compilerSource>${java.version}</compilerSource>
46 <compilerCompliance>${java.version}</compilerCompliance>
47 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
margarethaf68daa62017-09-21 02:11:24 +020048 </configuration>
49 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
50 </executions> -->
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-compiler-plugin</artifactId>
dependabot[bot]1bb1dcd2022-02-14 17:02:20 +000055 <version>3.10.0</version>
margarethaf68daa62017-09-21 02:11:24 +020056 <configuration>
57 <compilerVersion>${java.version}</compilerVersion>
58 <source>${java.version}</source>
59 <target>${java.version}</target>
Marc Kupietz483db752020-03-25 08:25:35 +010060 <annotationProcessors>
margaretha2df06602018-11-14 19:10:30 +010061 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
62 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
Marc Kupietz483db752020-03-25 08:25:35 +010063 </annotationProcessors>
margarethaf68daa62017-09-21 02:11:24 +020064 </configuration>
65 </plugin>
66
67 <!-- build tests jar, so extensions can use fastjerseytest class to build
68 rest tests -->
margaretha0ddaed62021-01-21 17:10:33 +010069 <plugin>
margaretha6f0b7382018-11-21 17:42:02 +010070 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-jar-plugin</artifactId>
dependabot[bot]0981a542022-01-12 17:01:49 +000072 <version>3.2.2</version>
margaretha6f0b7382018-11-21 17:42:02 +010073 <executions>
74 <execution>
margaretha6f0b7382018-11-21 17:42:02 +010075 <goals>
76 <goal>test-jar</goal>
77 </goals>
78 </execution>
79 </executions>
margaretha0ddaed62021-01-21 17:10:33 +010080 </plugin>
margaretha6f0b7382018-11-21 17:42:02 +010081
margaretha2df06602018-11-14 19:10:30 +010082 <!-- Generate source jar -->
83 <plugin>
margarethaf68daa62017-09-21 02:11:24 +020084 <groupId>org.apache.maven.plugins</groupId>
margaretha49cb6882018-07-04 04:19:54 +020085 <artifactId>maven-source-plugin</artifactId>
dependabot[bot]83c4bd32020-07-06 05:43:07 +000086 <version>3.2.1</version>
margarethaf68daa62017-09-21 02:11:24 +020087 <executions>
88 <execution>
margaretha49cb6882018-07-04 04:19:54 +020089 <id>attach-sources</id>
margarethaf68daa62017-09-21 02:11:24 +020090 <goals>
margaretha49cb6882018-07-04 04:19:54 +020091 <goal>jar</goal>
margarethaf68daa62017-09-21 02:11:24 +020092 </goals>
93 </execution>
94 </executions>
margaretha2df06602018-11-14 19:10:30 +010095 </plugin>
margarethaf68daa62017-09-21 02:11:24 +020096 </plugins>
97 </build>
98 <dependencies>
margaretha2df06602018-11-14 19:10:30 +010099 <!-- Jersey -->
margarethaf68daa62017-09-21 02:11:24 +0200100 <dependency>
101 <groupId>com.sun.jersey</groupId>
102 <artifactId>jersey-bundle</artifactId>
103 <version>${jersey.version}</version>
104 </dependency>
105 <!--EM: added -->
106 <dependency>
107 <groupId>com.sun.jersey</groupId>
108 <artifactId>jersey-server</artifactId>
109 <version>${jersey.version}</version>
110 </dependency>
111
112 <dependency>
113 <groupId>com.sun.jersey.contribs</groupId>
114 <artifactId>jersey-spring</artifactId>
115 <version>${jersey.version}</version>
116 <exclusions>
117 <exclusion>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring</artifactId>
120 </exclusion>
121 <exclusion>
122 <groupId>org.springframework</groupId>
123 <artifactId>spring-core</artifactId>
124 </exclusion>
125 <exclusion>
126 <groupId>org.springframework</groupId>
127 <artifactId>spring-web</artifactId>
128 </exclusion>
129 <exclusion>
130 <groupId>org.springframework</groupId>
131 <artifactId>spring-beans</artifactId>
132 </exclusion>
133 <exclusion>
134 <groupId>org.springframework</groupId>
135 <artifactId>spring-context</artifactId>
136 </exclusion>
137 <exclusion>
138 <groupId>org.springframework</groupId>
139 <artifactId>spring-aop</artifactId>
140 </exclusion>
141 </exclusions>
142 </dependency>
margaretha2df06602018-11-14 19:10:30 +0100143
144 <!-- JSON -->
margarethaf68daa62017-09-21 02:11:24 +0200145 <dependency>
margaretha2df06602018-11-14 19:10:30 +0100146 <groupId>com.sun.jersey</groupId>
147 <artifactId>jersey-json</artifactId>
margarethaf68daa62017-09-21 02:11:24 +0200148 <version>${jersey.version}</version>
margaretha10d31a22019-04-11 15:16:37 +0200149 <exclusions>
150 <exclusion>
151 <groupId>org.codehaus.jackson</groupId>
152 <artifactId>jackson-core-asl</artifactId>
153 </exclusion>
154 <exclusion>
155 <groupId>org.codehaus.jackson</groupId>
156 <artifactId>jackson-mapper-asl</artifactId>
157 </exclusion>
158 <exclusion>
159 <groupId>org.codehaus.jackson</groupId>
160 <artifactId>jackson-jaxrs</artifactId>
161 </exclusion>
162 <exclusion>
163 <groupId>org.codehaus.jackson</groupId>
164 <artifactId>jackson-xc</artifactId>
165 </exclusion>
166 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200167 </dependency>
168 <dependency>
margaretha2df06602018-11-14 19:10:30 +0100169 <groupId>net.minidev</groupId>
170 <artifactId>json-smart</artifactId>
dependabot[bot]a30c3802022-02-14 17:02:23 +0000171 <version>2.4.8</version>
margarethaf68daa62017-09-21 02:11:24 +0200172 </dependency>
margaretha74a1f9e2019-04-25 16:11:49 +0200173
174 <!-- Jersey 1x originally uses codehaus -->
margaretha398f4722019-01-09 19:07:20 +0100175 <dependency>
176 <groupId>com.fasterxml.jackson.jaxrs</groupId>
177 <artifactId>jackson-jaxrs-json-provider</artifactId>
dependabot[bot]ab0865a2022-01-07 08:04:07 +0000178 <version>2.12.6</version>
margaretha398f4722019-01-09 19:07:20 +0100179 </dependency>
margaretha2df06602018-11-14 19:10:30 +0100180
181 <!-- Flyway -->
182 <dependency>
183 <groupId>org.flywaydb</groupId>
184 <artifactId>flyway-core</artifactId>
margarethafcf8bd92021-01-14 10:55:53 +0100185 <version>${flyway.version}</version>
margaretha2df06602018-11-14 19:10:30 +0100186 </dependency>
187
188 <!-- Logging -->
margarethaf68daa62017-09-21 02:11:24 +0200189 <dependency>
margaretha49cb6882018-07-04 04:19:54 +0200190 <groupId>org.apache.logging.log4j</groupId>
191 <artifactId>log4j-api</artifactId>
Marc Kupietz99ed5b02020-07-03 09:33:34 +0200192 <version>${log4j.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200193 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200194 <dependency>
margaretha49cb6882018-07-04 04:19:54 +0200195 <groupId>org.apache.logging.log4j</groupId>
196 <artifactId>log4j-core</artifactId>
Marc Kupietz99ed5b02020-07-03 09:33:34 +0200197 <version>${log4j.version}</version>
margarethafcf8bd92021-01-14 10:55:53 +0100198 <exclusions>
199 <exclusion>
200 <groupId>org.apache.logging.log4j</groupId>
201 <artifactId>log4j-api</artifactId>
202 </exclusion>
203 </exclusions>
margaretha49cb6882018-07-04 04:19:54 +0200204 </dependency>
205 <dependency>
margaretha2df06602018-11-14 19:10:30 +0100206 <groupId>org.apache.logging.log4j</groupId>
207 <artifactId>log4j-slf4j-impl</artifactId>
Marc Kupietz99ed5b02020-07-03 09:33:34 +0200208 <version>${log4j.version}</version>
margaretha49cb6882018-07-04 04:19:54 +0200209 </dependency>
210 <dependency>
margaretha2df06602018-11-14 19:10:30 +0100211 <groupId>org.apache.logging.log4j</groupId>
212 <artifactId>log4j-jul</artifactId>
Marc Kupietz99ed5b02020-07-03 09:33:34 +0200213 <version>${log4j.version}</version>
margaretha2df06602018-11-14 19:10:30 +0100214 <exclusions>
215 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100216 <groupId>org.apache.logging.log4j</groupId>
217 <artifactId>log4j-api</artifactId>
margaretha6ad08b42018-08-22 18:33:54 +0200218 </exclusion>
margaretha2df06602018-11-14 19:10:30 +0100219 </exclusions>
margaretha49cb6882018-07-04 04:19:54 +0200220 </dependency>
margaretha6ad08b42018-08-22 18:33:54 +0200221 <dependency>
222 <groupId>org.slf4j</groupId>
223 <artifactId>slf4j-api</artifactId>
dependabot[bot]0739a322022-02-08 17:03:09 +0000224 <version>1.7.36</version>
margaretha6ad08b42018-08-22 18:33:54 +0200225 </dependency>
margaretha2df06602018-11-14 19:10:30 +0100226
227 <!-- Java Assist -->
228 <dependency>
229 <groupId>org.javassist</groupId>
230 <artifactId>javassist</artifactId>
dependabot[bot]a9b8fc72021-05-10 05:49:00 +0000231 <version>3.28.0-GA</version>
margaretha2df06602018-11-14 19:10:30 +0100232 </dependency>
233
234 <!-- EM:done -->
235
margaretha49cb6882018-07-04 04:19:54 +0200236 <dependency>
margarethaf68daa62017-09-21 02:11:24 +0200237 <groupId>junit</groupId>
238 <artifactId>junit</artifactId>
dependabot[bot]c5abefe2021-02-24 14:39:55 +0000239 <version>4.13.2</version>
margarethaf68daa62017-09-21 02:11:24 +0200240 </dependency>
241 <dependency>
242 <groupId>org.projectlombok</groupId>
243 <artifactId>lombok</artifactId>
dependabot[bot]a0f230c2021-10-07 17:02:00 +0000244 <version>1.18.22</version>
margarethaf68daa62017-09-21 02:11:24 +0200245 </dependency>
246 <dependency>
247 <groupId>joda-time</groupId>
248 <artifactId>joda-time</artifactId>
dependabot[bot]2a6e0342021-10-26 17:01:59 +0000249 <version>2.10.13</version>
margarethaf68daa62017-09-21 02:11:24 +0200250 </dependency>
251 <dependency>
252 <groupId>de.ids_mannheim.korap</groupId>
253 <artifactId>Koral</artifactId>
margarethaa8c364b2021-02-19 13:00:31 +0100254 <version>${koral.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200255 <exclusions>
256 <exclusion>
margaretha0ddaed62021-01-21 17:10:33 +0100257 <groupId>org.sonatype.sisu</groupId>
258 <artifactId>sisu-guava</artifactId>
259 </exclusion>
260 <exclusion>
margarethaf68daa62017-09-21 02:11:24 +0200261 <groupId>org.eclipse.jetty</groupId>
262 <artifactId>jetty-servlet</artifactId>
263 </exclusion>
margaretha49cb6882018-07-04 04:19:54 +0200264 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100265 <groupId>org.apache.logging.log4j</groupId>
266 <artifactId>log4j-api</artifactId>
margaretha49cb6882018-07-04 04:19:54 +0200267 </exclusion>
268 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100269 <groupId>org.apache.logging.log4j</groupId>
270 <artifactId>log4j-core</artifactId>
margaretha49cb6882018-07-04 04:19:54 +0200271 </exclusion>
272 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100273 <groupId>org.apache.logging.log4j</groupId>
274 <artifactId>log4j-slf4j-impl</artifactId>
margaretha49cb6882018-07-04 04:19:54 +0200275 </exclusion>
276 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100277 <groupId>org.apache.logging.log4j</groupId>
278 <artifactId>log4j-jul</artifactId>
margaretha49cb6882018-07-04 04:19:54 +0200279 </exclusion>
margarethaf68daa62017-09-21 02:11:24 +0200280 </exclusions>
281 </dependency>
282
283 <dependency>
284 <groupId>org.xerial</groupId>
285 <artifactId>sqlite-jdbc</artifactId>
dependabot[bot]2b233242021-08-30 17:01:31 +0000286 <version>3.36.0.3</version>
margarethaf68daa62017-09-21 02:11:24 +0200287 </dependency>
288
margarethaf68daa62017-09-21 02:11:24 +0200289 <dependency>
290 <groupId>org.apache.commons</groupId>
291 <artifactId>commons-dbcp2</artifactId>
dependabot[bot]26101ec2021-08-04 17:01:44 +0000292 <version>2.9.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200293 </dependency>
294
295 <dependency>
296 <groupId>commons-validator</groupId>
297 <artifactId>commons-validator</artifactId>
dependabot[bot]d9501c02020-08-10 05:37:45 +0000298 <version>1.7</version>
margarethaf68daa62017-09-21 02:11:24 +0200299 </dependency>
300
301 <dependency>
302 <groupId>org.mindrot</groupId>
303 <artifactId>jbcrypt</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100304 <version>0.4</version>
margarethaf68daa62017-09-21 02:11:24 +0200305 </dependency>
margaretha49cb6882018-07-04 04:19:54 +0200306
margarethaf68daa62017-09-21 02:11:24 +0200307 <dependency>
margaretha74a1f9e2019-04-25 16:11:49 +0200308 <groupId>javax.annotation</groupId>
309 <artifactId>javax.annotation-api</artifactId>
310 <version>1.3.2</version>
311 </dependency>
312
313 <dependency>
margarethaf68daa62017-09-21 02:11:24 +0200314 <groupId>de.ids_mannheim.korap</groupId>
315 <artifactId>Krill</artifactId>
margarethaa8c364b2021-02-19 13:00:31 +0100316 <version>${krill.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200317 <exclusions>
318 <exclusion>
margaretha74a1f9e2019-04-25 16:11:49 +0200319 <groupId>org.glassfish.jersey.containers</groupId>
320 <artifactId>jersey-container-grizzly2-http</artifactId>
321 </exclusion>
322 <exclusion>
margarethaf68daa62017-09-21 02:11:24 +0200323 <groupId>org.xerial</groupId>
324 <artifactId>sqlite-jdbc</artifactId>
325 </exclusion>
margaretha49cb6882018-07-04 04:19:54 +0200326 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100327 <groupId>org.apache.logging.log4j</groupId>
328 <artifactId>log4j-api</artifactId>
margaretha6ad08b42018-08-22 18:33:54 +0200329 </exclusion>
330 <exclusion>
margarethafcf8bd92021-01-14 10:55:53 +0100331 <groupId>org.apache.logging.log4j</groupId>
332 <artifactId>log4j-core</artifactId>
margaretha49cb6882018-07-04 04:19:54 +0200333 </exclusion>
334 <exclusion>
335 <groupId>org.apache.logging.log4j</groupId>
336 <artifactId>log4j-slf4j-impl</artifactId>
337 </exclusion>
338 <exclusion>
339 <groupId>org.slf4j</groupId>
340 <artifactId>jul-to-slf4j</artifactId>
341 </exclusion>
margarethaf68daa62017-09-21 02:11:24 +0200342 </exclusions>
343 </dependency>
344 <dependency>
345 <groupId>org.reflections</groupId>
346 <artifactId>reflections</artifactId>
dependabot[bot]778c94d2021-10-25 17:01:39 +0000347 <version>0.10.2</version>
margarethaf68daa62017-09-21 02:11:24 +0200348 </dependency>
margaretha2df06602018-11-14 19:10:30 +0100349
350 <!-- Spring -->
margarethaf68daa62017-09-21 02:11:24 +0200351 <dependency>
352 <groupId>org.springframework</groupId>
353 <artifactId>spring-core</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100354 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200355 </dependency>
356 <dependency>
357 <groupId>org.springframework</groupId>
358 <artifactId>spring-web</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100359 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200360 </dependency>
361 <dependency>
362 <groupId>org.springframework</groupId>
363 <artifactId>spring-asm</artifactId>
364 <version>3.1.4.RELEASE</version>
365 </dependency>
366 <dependency>
367 <groupId>org.springframework</groupId>
368 <artifactId>spring-orm</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100369 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200370 </dependency>
margaretha2df06602018-11-14 19:10:30 +0100371
372 <dependency>
373 <groupId>org.springframework</groupId>
374 <artifactId>spring-jdbc</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100375 <version>${spring.version}</version>
margaretha2df06602018-11-14 19:10:30 +0100376 </dependency>
377 <dependency>
378 <groupId>org.springframework</groupId>
379 <artifactId>spring-tx</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100380 <version>${spring.version}</version>
margaretha2df06602018-11-14 19:10:30 +0100381 </dependency>
margaretha398f4722019-01-09 19:07:20 +0100382 <!-- <dependency>
margaretha2df06602018-11-14 19:10:30 +0100383 <groupId>org.springframework.security</groupId>
384 <artifactId>spring-security-core</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100385 <version>${spring.version}</version>
margaretha2df06602018-11-14 19:10:30 +0100386 </dependency>
387 <dependency>
388 <groupId>org.springframework.security</groupId>
389 <artifactId>spring-security-web</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100390 <version>${spring.version}</version>
margaretha398f4722019-01-09 19:07:20 +0100391 </dependency> -->
margarethaf68daa62017-09-21 02:11:24 +0200392 <!-- EM: done -->
393 <dependency>
394 <groupId>org.springframework</groupId>
395 <artifactId>spring-context</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100396 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200397 </dependency>
398 <dependency>
399 <groupId>org.springframework</groupId>
400 <artifactId>spring-context-support</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100401 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200402 </dependency>
403 <dependency>
404 <groupId>org.springframework</groupId>
405 <artifactId>spring-test</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100406 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200407 <scope>compile</scope>
408 </dependency>
409
410 <!-- apparently this order prevents the spring schemas from being overriden
411 in META-INF/spring.schemas, thus must stay like this -->
412 <dependency>
413 <groupId>org.springframework</groupId>
414 <artifactId>spring-aop</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100415 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200416 </dependency>
417 <dependency>
418 <groupId>org.springframework</groupId>
419 <artifactId>spring-aspects</artifactId>
margaretha0b903912019-01-08 17:41:39 +0100420 <version>${spring.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200421 </dependency>
422
margarethaf68daa62017-09-21 02:11:24 +0200423 <!-- end copy -->
424
425 <dependency>
426 <groupId>commons-collections</groupId>
427 <artifactId>commons-collections</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100428 <version>3.2.2</version>
margarethaf68daa62017-09-21 02:11:24 +0200429 </dependency>
margaretha49cb6882018-07-04 04:19:54 +0200430
margaretha58e18632018-02-15 13:04:42 +0100431 <!-- jetty -->
margarethaf68daa62017-09-21 02:11:24 +0200432 <dependency>
433 <groupId>org.eclipse.jetty</groupId>
434 <artifactId>jetty-server</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100435 <version>${jetty.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200436 </dependency>
437 <dependency>
438 <groupId>org.eclipse.jetty</groupId>
439 <artifactId>jetty-servlet</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100440 <version>${jetty.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200441 </dependency>
442 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100443 <groupId>org.eclipse.jetty</groupId>
444 <artifactId>jetty-webapp</artifactId>
445 <version>${jetty.version}</version>
446 </dependency>
margaretha49cb6882018-07-04 04:19:54 +0200447
margaretha58e18632018-02-15 13:04:42 +0100448 <dependency>
margarethaf68daa62017-09-21 02:11:24 +0200449 <groupId>asm</groupId>
450 <artifactId>asm</artifactId>
451 <version>3.3.1</version>
452 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200453
margaretha2df06602018-11-14 19:10:30 +0100454 <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId>
455 <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions>
456 <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId>
457 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId>
458 </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId>
459 <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion>
460 <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId>
461 </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId>
462 </exclusion> </exclusions> </dependency> -->
margarethaf68daa62017-09-21 02:11:24 +0200463 <dependency>
464 <groupId>org.apache.httpcomponents</groupId>
465 <artifactId>httpclient</artifactId>
dependabot[bot]0fec1522020-11-09 06:19:08 +0000466 <version>4.5.13</version>
margarethaf68daa62017-09-21 02:11:24 +0200467 </dependency>
468 <dependency>
469 <groupId>commons-io</groupId>
470 <artifactId>commons-io</artifactId>
dependabot[bot]98284a02021-07-13 17:01:39 +0000471 <version>2.11.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200472 </dependency>
margaretha54134902017-09-27 18:43:11 +0200473
margaretha2df06602018-11-14 19:10:30 +0100474 <!-- Hibernate -->
margarethaf68daa62017-09-21 02:11:24 +0200475 <dependency>
476 <groupId>org.hibernate</groupId>
477 <artifactId>hibernate-ehcache</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100478 <version>${hibernate.version}</version>
margarethaf68daa62017-09-21 02:11:24 +0200479 </dependency>
margaretha439ad572018-10-29 12:15:28 +0100480 <dependency>
margaretha2df06602018-11-14 19:10:30 +0100481 <groupId>org.hibernate</groupId>
482 <artifactId>hibernate-jpamodelgen</artifactId>
483 <version>${hibernate.version}</version>
484 <scope>provided</scope>
485 </dependency>
margaretha77bf8b72020-12-04 13:47:48 +0100486 <dependency>
487 <groupId>com.github.gwenn</groupId>
488 <artifactId>sqlite-dialect</artifactId>
489 <version>0.1.0</version>
490 </dependency>
491
margaretha2df06602018-11-14 19:10:30 +0100492 <dependency>
margaretha439ad572018-10-29 12:15:28 +0100493 <groupId>javax.servlet</groupId>
494 <artifactId>javax.servlet-api</artifactId>
495 <version>4.0.1</version>
496 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200497 </dependencies>
Akron730ed082018-01-31 17:10:13 +0100498</project>