margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>de.ids_mannheim.korap</groupId> |
| 5 | <artifactId>Kustvakt-full</artifactId> |
margaretha | aca2fff | 2023-05-09 14:23:49 +0200 | [diff] [blame] | 6 | <version>0.70.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 7 | <properties> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 8 | <java.version>11</java.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 9 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
dependabot[bot] | 7cc9dd7 | 2023-03-23 17:56:32 +0000 | [diff] [blame] | 10 | <jersey.version>2.39.1</jersey.version> |
dependabot[bot] | 38cd487 | 2023-02-06 17:00:54 +0000 | [diff] [blame] | 11 | <hibernate.version>5.6.15.Final</hibernate.version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 12 | <spring.version>5.3.27</spring.version> |
| 13 | <jetty.version>9.4.51.v20230217</jetty.version> |
margaretha | 8bc9c06 | 2023-05-16 17:32:33 +0200 | [diff] [blame] | 14 | <flyway.version>9.18.0</flyway.version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 15 | <log4j.version>2.19.0</log4j.version> |
| 16 | <krill.version>[0.61.2,)</krill.version> |
| 17 | <koral.version>[0.39.1,)</koral.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 18 | </properties> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 19 | <profiles> |
| 20 | <profile> |
| 21 | <id>full</id> |
| 22 | <activation> |
| 23 | <activeByDefault>true</activeByDefault> |
| 24 | </activation> |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <artifactId>maven-shade-plugin</artifactId> |
dependabot[bot] | bfbfc43 | 2022-10-27 17:02:10 +0000 | [diff] [blame] | 29 | <version>3.4.1</version> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 30 | <executions> |
| 31 | <!-- option 1 --> |
| 32 | <execution> |
| 33 | <id>full</id> |
| 34 | <phase>package</phase> |
| 35 | <goals> |
| 36 | <goal>shade</goal> |
| 37 | </goals> |
| 38 | <configuration> |
| 39 | <finalName>Kustvakt-full-${project.version}</finalName> |
| 40 | <transformers> |
| 41 | <transformer |
| 42 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 43 | <mainClass> |
| 44 | de.ids_mannheim.korap.server.KustvaktServer |
| 45 | </mainClass> |
| 46 | </transformer> |
| 47 | <transformer |
| 48 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 49 | <resource>META-INF/spring.handlers |
| 50 | </resource> |
| 51 | </transformer> |
| 52 | <transformer |
| 53 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 54 | <resource>META-INF/spring.schemas |
| 55 | </resource> |
| 56 | </transformer> |
| 57 | </transformers> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 58 | <filters> |
margaretha | 92ad2ec | 2023-05-15 14:10:00 +0200 | [diff] [blame] | 59 | <filter> |
| 60 | <artifact>*:*</artifact> |
| 61 | <excludes> |
| 62 | <exclude>db/lite/**</exclude> |
| 63 | </excludes> |
| 64 | </filter> |
| 65 | </filters> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 66 | </configuration> |
| 67 | </execution> |
| 68 | </executions> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
| 72 | </profile> |
margaretha | 92ad2ec | 2023-05-15 14:10:00 +0200 | [diff] [blame] | 73 | |
| 74 | |
| 75 | <profile> |
| 76 | <id>lite</id> |
| 77 | <build> |
| 78 | <plugins> |
| 79 | <plugin> |
| 80 | <artifactId>maven-shade-plugin</artifactId> |
| 81 | <version>3.4.1</version> |
| 82 | <executions> |
| 83 | <!--option 2--> |
| 84 | <execution> |
| 85 | <id>lite</id> |
| 86 | <phase>package</phase> |
| 87 | <goals> |
| 88 | <goal>shade</goal> |
| 89 | </goals> |
| 90 | <configuration> |
| 91 | <finalName> |
| 92 | Kustvakt-lite-${project.version} |
| 93 | </finalName> |
| 94 | <transformers> |
| 95 | <transformer |
| 96 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 97 | <mainClass> |
| 98 | de.ids_mannheim.korap.server.KustvaktLiteServer |
| 99 | </mainClass> |
| 100 | </transformer> |
| 101 | <transformer |
| 102 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 103 | <resource>META-INF/spring.handlers |
| 104 | </resource> |
| 105 | </transformer> |
| 106 | <transformer |
| 107 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 108 | <resource>META-INF/spring.schemas |
| 109 | </resource> |
| 110 | </transformer> |
| 111 | </transformers> |
| 112 | <filters> |
| 113 | <filter> |
| 114 | <artifact>*:*</artifact> |
| 115 | <excludes> |
| 116 | <exclude>db/mysql/**</exclude> |
| 117 | <exclude>db/predefined/**</exclude> |
| 118 | <exclude>db/sqlite/**</exclude> |
| 119 | <exclude>db/test/**</exclude> |
| 120 | <exclude>com.novell.ldap</exclude> |
| 121 | <exclude>com.unboundid</exclude> |
| 122 | <exclude>org.glassfish.jersey.test-framework*</exclude> |
| 123 | <exclude>org.apache.velocity*</exclude> |
| 124 | <exclude>com.sun.mail</exclude> |
| 125 | <exclude>javax.activation</exclude> |
| 126 | </excludes> |
| 127 | </filter> |
| 128 | </filters> |
| 129 | </configuration> |
| 130 | </execution> |
| 131 | </executions> |
| 132 | </plugin> |
| 133 | </plugins> |
| 134 | </build> |
| 135 | </profile> |
| 136 | |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 137 | </profiles> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 138 | <build> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 139 | <!-- <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> |
| 140 | <includes> <include>**/*.info</include> <include>**/*.xml</include> <include>**/*.conf</include> |
| 141 | <include>**/*.kustvakt</include> <include>**/*.properties</include> <include>**/*.sql</include> |
| 142 | <include>**/*.vm</include> </includes> </resource> </resources> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 143 | <testResources> |
| 144 | <testResource> |
| 145 | <directory>src/test/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 146 | </testResource> |
| 147 | <testResource> |
| 148 | <directory>src/main/resources</directory> |
| 149 | <filtering>true</filtering> |
| 150 | <includes> |
| 151 | <include>**/*.info</include> |
Marc Kupietz | 392f478 | 2022-05-02 13:23:18 +0200 | [diff] [blame] | 152 | <include>**/*.conf</include> |
margaretha | 3da7cd3 | 2018-10-22 17:42:52 +0200 | [diff] [blame] | 153 | <include>**/*.json</include> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 154 | <include>**/*.p12</include> |
| 155 | <include>**/*.jks</include> |
| 156 | <include>**/*.ldif</include> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 157 | </includes> |
| 158 | </testResource> |
| 159 | </testResources> |
| 160 | <plugins> |
| 161 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 162 | <plugin> |
| 163 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 164 | <artifactId>maven-java-formatter-plugin</artifactId> |
| 165 | <version>0.4</version> |
| 166 | <configuration> |
| 167 | <configFile>${project.basedir}/Format.xml</configFile> |
| 168 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
| 169 | <compilerSource>${java.version}</compilerSource> |
| 170 | <compilerCompliance>${java.version}</compilerCompliance> |
| 171 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
| 172 | </configuration> |
| 173 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 174 | </executions> --> |
| 175 | </plugin> |
| 176 | <plugin> |
| 177 | <groupId>org.apache.maven.plugins</groupId> |
| 178 | <artifactId>maven-compiler-plugin</artifactId> |
margaretha | 7e1fa0f | 2023-03-06 16:19:09 +0100 | [diff] [blame] | 179 | <version>3.11.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 180 | <configuration> |
| 181 | <compilerVersion>${java.version}</compilerVersion> |
| 182 | <source>${java.version}</source> |
| 183 | <target>${java.version}</target> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 184 | <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 185 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
| 186 | </compilerArguments> --> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 187 | <annotationProcessors> |
margaretha | fc7d777 | 2018-01-16 17:48:17 +0100 | [diff] [blame] | 188 | <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 189 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 190 | </annotationProcessors> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 191 | </configuration> |
| 192 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 193 | <plugin> |
| 194 | <groupId>org.apache.maven.plugins</groupId> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 195 | <artifactId>maven-source-plugin</artifactId> |
| 196 | <version>3.2.1</version> |
| 197 | <executions> |
| 198 | <execution> |
| 199 | <id>attach-sources</id> |
| 200 | <goals> |
| 201 | <goal>jar</goal> |
| 202 | </goals> |
| 203 | </execution> |
| 204 | </executions> |
| 205 | </plugin> |
| 206 | <plugin> |
| 207 | <groupId>org.apache.maven.plugins</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 208 | <artifactId>maven-surefire-plugin</artifactId> |
dependabot[bot] | d7df703 | 2023-05-08 17:57:41 +0000 | [diff] [blame] | 209 | <version>3.1.0</version> |
dependabot[bot] | 9546574 | 2023-02-17 17:56:32 +0000 | [diff] [blame] | 210 | <dependencies> |
| 211 | <dependency> |
| 212 | <groupId>org.apache.maven.surefire</groupId> |
| 213 | <artifactId>surefire-junit47</artifactId> |
dependabot[bot] | d564863 | 2023-05-08 17:57:43 +0000 | [diff] [blame] | 214 | <version>3.1.0</version> |
dependabot[bot] | 9546574 | 2023-02-17 17:56:32 +0000 | [diff] [blame] | 215 | </dependency> |
| 216 | </dependencies> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 217 | <configuration> |
margaretha | 0a45be1 | 2018-07-12 15:06:30 +0200 | [diff] [blame] | 218 | <reuseForks>true</reuseForks> |
| 219 | <forkCount>1</forkCount> |
| 220 | <threadCount>10</threadCount> |
Marc Kupietz | ddd9a8b | 2022-11-17 17:24:58 +0100 | [diff] [blame] | 221 | <argLine>-Xmx512m |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 222 | -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 223 | <excludes> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 224 | <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude> |
| 225 | <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude> |
| 226 | <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude> |
| 227 | <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude> |
| 228 | <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 229 | <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude> |
margaretha | 7cd52d1 | 2023-03-15 16:56:06 +0100 | [diff] [blame] | 230 | <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 231 | </excludes> |
| 232 | <includes> |
| 233 | <include>de/ids_mannheim/korap/**/*.java</include> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 234 | <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 235 | </includes> |
| 236 | </configuration> |
| 237 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 238 | </plugins> |
| 239 | </build> |
| 240 | |
| 241 | <dependencies> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 242 | <!-- backport --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 243 | <dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 244 | <groupId>backport-util-concurrent</groupId> |
| 245 | <artifactId>backport-util-concurrent</artifactId> |
| 246 | <version>3.1</version> |
| 247 | </dependency> |
| 248 | |
| 249 | <!-- Jersey --> |
| 250 | <dependency> |
| 251 | <groupId>org.glassfish.jersey.core</groupId> |
| 252 | <artifactId>jersey-server</artifactId> |
| 253 | <version>${jersey.version}</version> |
| 254 | </dependency> |
| 255 | |
| 256 | <dependency> |
| 257 | <groupId>org.glassfish.jersey.ext</groupId> |
| 258 | <artifactId>jersey-spring5</artifactId> |
| 259 | <version>${jersey.version}</version> |
| 260 | <exclusions> |
| 261 | <exclusion> |
| 262 | <groupId>org.springframework</groupId> |
| 263 | <artifactId>spring-core</artifactId> |
| 264 | </exclusion> |
| 265 | <exclusion> |
| 266 | <groupId>org.springframework</groupId> |
| 267 | <artifactId>spring-web</artifactId> |
| 268 | </exclusion> |
| 269 | <exclusion> |
| 270 | <groupId>org.springframework</groupId> |
| 271 | <artifactId>spring-beans</artifactId> |
| 272 | </exclusion> |
| 273 | <exclusion> |
| 274 | <groupId>org.springframework</groupId> |
| 275 | <artifactId>spring-context</artifactId> |
| 276 | </exclusion> |
| 277 | <exclusion> |
| 278 | <groupId>org.springframework</groupId> |
| 279 | <artifactId>spring-aop</artifactId> |
| 280 | </exclusion> |
| 281 | </exclusions> |
| 282 | </dependency> |
| 283 | |
| 284 | <!-- JSON --> |
| 285 | <dependency> |
| 286 | <groupId>org.glassfish.jersey.media</groupId> |
| 287 | <artifactId>jersey-media-json-jackson</artifactId> |
| 288 | <version>${jersey.version}</version> |
| 289 | <exclusions> |
| 290 | <exclusion> |
| 291 | <groupId>com.fasterxml.jackson.core</groupId> |
| 292 | <artifactId>jackson-annotations</artifactId> |
| 293 | </exclusion> |
| 294 | <exclusion> |
| 295 | <groupId>com.fasterxml.jackson.core</groupId> |
| 296 | <artifactId>jackson-databind</artifactId> |
| 297 | </exclusion> |
| 298 | </exclusions> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>net.minidev</groupId> |
| 302 | <artifactId>json-smart</artifactId> |
dependabot[bot] | b962ef0 | 2023-05-18 17:57:10 +0000 | [diff] [blame] | 303 | <version>2.4.11</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 304 | </dependency> |
| 305 | |
| 306 | <!-- Jersey 1x originally uses codehaus --> |
| 307 | <dependency> |
| 308 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 309 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
dependabot[bot] | 6e1188d | 2023-05-17 17:56:52 +0000 | [diff] [blame] | 310 | <version>2.15.1</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 311 | </dependency> |
| 312 | |
| 313 | <!-- Flyway --> |
| 314 | <dependency> |
| 315 | <groupId>org.flywaydb</groupId> |
| 316 | <artifactId>flyway-core</artifactId> |
| 317 | <version>${flyway.version}</version> |
| 318 | </dependency> |
| 319 | |
| 320 | <!-- Logging --> |
| 321 | <dependency> |
| 322 | <groupId>org.apache.logging.log4j</groupId> |
| 323 | <artifactId>log4j-api</artifactId> |
| 324 | <version>${log4j.version}</version> |
| 325 | </dependency> |
| 326 | <dependency> |
| 327 | <groupId>org.apache.logging.log4j</groupId> |
| 328 | <artifactId>log4j-core</artifactId> |
| 329 | <version>${log4j.version}</version> |
| 330 | <exclusions> |
| 331 | <exclusion> |
| 332 | <groupId>org.apache.logging.log4j</groupId> |
| 333 | <artifactId>log4j-api</artifactId> |
| 334 | </exclusion> |
| 335 | </exclusions> |
| 336 | </dependency> |
| 337 | <dependency> |
| 338 | <groupId>org.apache.logging.log4j</groupId> |
| 339 | <artifactId>log4j-slf4j2-impl</artifactId> |
| 340 | <version>${log4j.version}</version> |
| 341 | </dependency> |
| 342 | <dependency> |
| 343 | <groupId>org.apache.logging.log4j</groupId> |
| 344 | <artifactId>log4j-jul</artifactId> |
| 345 | <version>${log4j.version}</version> |
| 346 | <exclusions> |
| 347 | <exclusion> |
| 348 | <groupId>org.apache.logging.log4j</groupId> |
| 349 | <artifactId>log4j-api</artifactId> |
| 350 | </exclusion> |
| 351 | </exclusions> |
| 352 | </dependency> |
| 353 | <dependency> |
| 354 | <groupId>org.slf4j</groupId> |
| 355 | <artifactId>slf4j-api</artifactId> |
| 356 | <version>2.0.7</version> |
| 357 | </dependency> |
| 358 | |
| 359 | <!-- Java Assist --> |
| 360 | <dependency> |
| 361 | <groupId>org.javassist</groupId> |
| 362 | <artifactId>javassist</artifactId> |
| 363 | <version>3.29.2-GA</version> |
| 364 | </dependency> |
| 365 | |
| 366 | <!-- EM:done --> |
| 367 | |
| 368 | <dependency> |
| 369 | <groupId>junit</groupId> |
| 370 | <artifactId>junit</artifactId> |
| 371 | <version>4.13.2</version> |
| 372 | </dependency> |
| 373 | <dependency> |
| 374 | <groupId>org.projectlombok</groupId> |
| 375 | <artifactId>lombok</artifactId> |
| 376 | <version>1.18.26</version> |
| 377 | </dependency> |
| 378 | <dependency> |
| 379 | <groupId>joda-time</groupId> |
| 380 | <artifactId>joda-time</artifactId> |
| 381 | <version>2.12.5</version> |
| 382 | </dependency> |
| 383 | <dependency> |
| 384 | <groupId>de.ids_mannheim.korap</groupId> |
| 385 | <artifactId>Koral</artifactId> |
| 386 | <version>${koral.version}</version> |
| 387 | <exclusions> |
| 388 | <exclusion> |
| 389 | <groupId>org.sonatype.sisu</groupId> |
| 390 | <artifactId>sisu-guava</artifactId> |
| 391 | </exclusion> |
| 392 | <exclusion> |
| 393 | <groupId>org.eclipse.jetty</groupId> |
| 394 | <artifactId>jetty-servlet</artifactId> |
| 395 | </exclusion> |
| 396 | <exclusion> |
| 397 | <groupId>org.apache.logging.log4j</groupId> |
| 398 | <artifactId>log4j-api</artifactId> |
| 399 | </exclusion> |
| 400 | <exclusion> |
| 401 | <groupId>org.apache.logging.log4j</groupId> |
| 402 | <artifactId>log4j-core</artifactId> |
| 403 | </exclusion> |
| 404 | <exclusion> |
| 405 | <groupId>org.apache.logging.log4j</groupId> |
| 406 | <artifactId>log4j-slf4j-impl</artifactId> |
| 407 | </exclusion> |
| 408 | <exclusion> |
| 409 | <groupId>org.apache.logging.log4j</groupId> |
| 410 | <artifactId>log4j-jul</artifactId> |
| 411 | </exclusion> |
| 412 | </exclusions> |
| 413 | </dependency> |
| 414 | |
| 415 | <dependency> |
| 416 | <groupId>org.xerial</groupId> |
| 417 | <artifactId>sqlite-jdbc</artifactId> |
| 418 | <version>3.41.2.1</version> |
| 419 | </dependency> |
| 420 | |
| 421 | <dependency> |
| 422 | <groupId>org.apache.commons</groupId> |
| 423 | <artifactId>commons-dbcp2</artifactId> |
| 424 | <version>2.9.0</version> |
| 425 | </dependency> |
| 426 | |
| 427 | <dependency> |
| 428 | <groupId>commons-validator</groupId> |
| 429 | <artifactId>commons-validator</artifactId> |
| 430 | <version>1.7</version> |
| 431 | </dependency> |
| 432 | |
| 433 | <dependency> |
| 434 | <groupId>org.mindrot</groupId> |
| 435 | <artifactId>jbcrypt</artifactId> |
| 436 | <version>0.4</version> |
| 437 | </dependency> |
| 438 | |
| 439 | <dependency> |
| 440 | <groupId>javax.annotation</groupId> |
| 441 | <artifactId>javax.annotation-api</artifactId> |
| 442 | <version>1.3.2</version> |
| 443 | </dependency> |
| 444 | |
| 445 | <dependency> |
| 446 | <groupId>de.ids_mannheim.korap</groupId> |
| 447 | <artifactId>Krill</artifactId> |
| 448 | <version>${krill.version}</version> |
| 449 | <exclusions> |
| 450 | <exclusion> |
| 451 | <groupId>org.glassfish.jersey.containers</groupId> |
| 452 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 453 | </exclusion> |
| 454 | <exclusion> |
| 455 | <groupId>org.xerial</groupId> |
| 456 | <artifactId>sqlite-jdbc</artifactId> |
| 457 | </exclusion> |
| 458 | <exclusion> |
| 459 | <groupId>org.apache.logging.log4j</groupId> |
| 460 | <artifactId>log4j-api</artifactId> |
| 461 | </exclusion> |
| 462 | <exclusion> |
| 463 | <groupId>org.apache.logging.log4j</groupId> |
| 464 | <artifactId>log4j-core</artifactId> |
| 465 | </exclusion> |
| 466 | <exclusion> |
| 467 | <groupId>org.apache.logging.log4j</groupId> |
| 468 | <artifactId>log4j-slf4j-impl</artifactId> |
| 469 | </exclusion> |
| 470 | <exclusion> |
| 471 | <groupId>org.slf4j</groupId> |
| 472 | <artifactId>jul-to-slf4j</artifactId> |
| 473 | </exclusion> |
| 474 | </exclusions> |
| 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>org.reflections</groupId> |
| 478 | <artifactId>reflections</artifactId> |
| 479 | <version>0.10.2</version> |
| 480 | </dependency> |
| 481 | |
| 482 | <!-- Spring --> |
| 483 | <dependency> |
| 484 | <groupId>org.springframework</groupId> |
| 485 | <artifactId>spring-core</artifactId> |
| 486 | <version>${spring.version}</version> |
| 487 | </dependency> |
| 488 | <dependency> |
| 489 | <groupId>org.springframework</groupId> |
| 490 | <artifactId>spring-web</artifactId> |
| 491 | <version>${spring.version}</version> |
| 492 | </dependency> |
| 493 | <dependency> |
| 494 | <groupId>org.springframework</groupId> |
| 495 | <artifactId>spring-orm</artifactId> |
| 496 | <version>${spring.version}</version> |
| 497 | </dependency> |
| 498 | |
| 499 | <dependency> |
| 500 | <groupId>org.springframework</groupId> |
| 501 | <artifactId>spring-jdbc</artifactId> |
| 502 | <version>${spring.version}</version> |
| 503 | </dependency> |
| 504 | <dependency> |
| 505 | <groupId>org.springframework</groupId> |
| 506 | <artifactId>spring-tx</artifactId> |
| 507 | <version>${spring.version}</version> |
| 508 | </dependency> |
| 509 | <!-- <dependency> |
| 510 | <groupId>org.springframework.security</groupId> |
| 511 | <artifactId>spring-security-core</artifactId> |
| 512 | <version>${spring.version}</version> |
| 513 | </dependency> |
| 514 | <dependency> |
| 515 | <groupId>org.springframework.security</groupId> |
| 516 | <artifactId>spring-security-web</artifactId> |
| 517 | <version>${spring.version}</version> |
| 518 | </dependency> --> |
| 519 | <!-- EM: done --> |
| 520 | <dependency> |
| 521 | <groupId>org.springframework</groupId> |
| 522 | <artifactId>spring-context</artifactId> |
| 523 | <version>${spring.version}</version> |
| 524 | </dependency> |
| 525 | <dependency> |
| 526 | <groupId>org.springframework</groupId> |
| 527 | <artifactId>spring-context-support</artifactId> |
| 528 | <version>${spring.version}</version> |
| 529 | </dependency> |
| 530 | <dependency> |
| 531 | <groupId>org.springframework</groupId> |
| 532 | <artifactId>spring-test</artifactId> |
| 533 | <version>${spring.version}</version> |
| 534 | <scope>compile</scope> |
| 535 | </dependency> |
| 536 | |
| 537 | <!-- apparently this order prevents the spring schemas from being overriden |
| 538 | in META-INF/spring.schemas, thus must stay like this --> |
| 539 | <dependency> |
| 540 | <groupId>org.springframework</groupId> |
| 541 | <artifactId>spring-aop</artifactId> |
| 542 | <version>${spring.version}</version> |
| 543 | </dependency> |
| 544 | <dependency> |
| 545 | <groupId>org.springframework</groupId> |
| 546 | <artifactId>spring-aspects</artifactId> |
| 547 | <version>${spring.version}</version> |
| 548 | </dependency> |
| 549 | |
| 550 | <!-- end copy --> |
| 551 | |
| 552 | <dependency> |
| 553 | <groupId>commons-collections</groupId> |
| 554 | <artifactId>commons-collections</artifactId> |
| 555 | <version>3.2.2</version> |
| 556 | </dependency> |
| 557 | |
| 558 | <!-- jetty --> |
| 559 | <dependency> |
| 560 | <groupId>org.eclipse.jetty</groupId> |
| 561 | <artifactId>jetty-server</artifactId> |
| 562 | <version>${jetty.version}</version> |
| 563 | </dependency> |
| 564 | <dependency> |
| 565 | <groupId>org.eclipse.jetty</groupId> |
| 566 | <artifactId>jetty-servlet</artifactId> |
| 567 | <version>${jetty.version}</version> |
| 568 | </dependency> |
| 569 | <dependency> |
| 570 | <groupId>org.eclipse.jetty</groupId> |
| 571 | <artifactId>jetty-webapp</artifactId> |
| 572 | <version>${jetty.version}</version> |
| 573 | </dependency> |
| 574 | |
| 575 | <dependency> |
| 576 | <groupId>asm</groupId> |
| 577 | <artifactId>asm</artifactId> |
| 578 | <version>3.3.1</version> |
| 579 | </dependency> |
| 580 | |
| 581 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 582 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 583 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 584 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 585 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 586 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 587 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 588 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 589 | </exclusion> </exclusions> </dependency> --> |
| 590 | <dependency> |
| 591 | <groupId>org.apache.httpcomponents</groupId> |
| 592 | <artifactId>httpclient</artifactId> |
| 593 | <version>4.5.14</version> |
| 594 | </dependency> |
| 595 | <dependency> |
| 596 | <groupId>commons-io</groupId> |
| 597 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 3b3e524 | 2023-05-17 17:56:43 +0000 | [diff] [blame^] | 598 | <version>2.12.0</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 599 | </dependency> |
| 600 | |
| 601 | <!-- Hibernate --> |
| 602 | <dependency> |
| 603 | <groupId>org.hibernate</groupId> |
| 604 | <artifactId>hibernate-ehcache</artifactId> |
| 605 | <version>${hibernate.version}</version> |
| 606 | </dependency> |
| 607 | <dependency> |
| 608 | <groupId>org.hibernate</groupId> |
| 609 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 610 | <version>${hibernate.version}</version> |
| 611 | <scope>provided</scope> |
| 612 | </dependency> |
| 613 | <dependency> |
| 614 | <groupId>com.github.gwenn</groupId> |
| 615 | <artifactId>sqlite-dialect</artifactId> |
| 616 | <version>0.1.0</version> |
| 617 | </dependency> |
| 618 | |
| 619 | <dependency> |
| 620 | <groupId>javax.servlet</groupId> |
| 621 | <artifactId>javax.servlet-api</artifactId> |
| 622 | <version>4.0.1</version> |
| 623 | </dependency> |
| 624 | <dependency> |
| 625 | <groupId>org.apache.commons</groupId> |
| 626 | <artifactId>commons-text</artifactId> |
| 627 | <version>1.10.0</version> |
| 628 | <scope>test</scope> |
| 629 | </dependency> |
| 630 | <!--<dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 631 | <groupId>de.ids_mannheim.korap</groupId> |
| 632 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 4bae6a0 | 2023-03-13 09:50:33 +0100 | [diff] [blame] | 633 | <version>${project.version}</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 634 | </dependency> |
| 635 | <dependency> |
| 636 | <groupId>de.ids_mannheim.korap</groupId> |
| 637 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 4bae6a0 | 2023-03-13 09:50:33 +0100 | [diff] [blame] | 638 | <version>${project.version}</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 639 | <classifier>tests</classifier> |
| 640 | <type>test-jar</type> |
| 641 | <scope>test</scope> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 642 | </dependency>--> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 643 | <!-- LDAP --> |
| 644 | <dependency> |
| 645 | <groupId>com.novell.ldap</groupId> |
| 646 | <artifactId>jldap</artifactId> |
| 647 | <version>4.3</version> |
| 648 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 649 | <dependency> |
| 650 | <groupId>com.unboundid</groupId> |
| 651 | <artifactId>unboundid-ldapsdk</artifactId> |
dependabot[bot] | 722f68b | 2023-03-10 17:56:31 +0000 | [diff] [blame] | 652 | <version>6.0.8</version> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 653 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 654 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 655 | <!-- Hibernate --> |
| 656 | <dependency> |
| 657 | <groupId>org.hibernate</groupId> |
| 658 | <artifactId>hibernate-entitymanager</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 659 | <version>${hibernate.version}</version> |
| 660 | <exclusions> |
| 661 | <exclusion> |
| 662 | <groupId>org.javassist</groupId> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 663 | <artifactId>javassist</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 664 | </exclusion> |
| 665 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 666 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 667 | <dependency> |
| 668 | <groupId>org.hibernate</groupId> |
| 669 | <artifactId>hibernate-jpamodelgen</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 670 | <version>${hibernate.version}</version> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 671 | <scope>provided</scope> |
| 672 | </dependency> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 673 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 674 | <groupId>org.hibernate</groupId> |
| 675 | <artifactId>hibernate-java8</artifactId> |
| 676 | <version>${hibernate.version}</version> |
margaretha | e6c711b | 2018-02-06 21:55:04 +0100 | [diff] [blame] | 677 | </dependency> |
| 678 | <dependency> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 679 | <groupId>org.hibernate</groupId> |
| 680 | <artifactId>hibernate-c3p0</artifactId> |
| 681 | <version>${hibernate.version}</version> |
margaretha | c7196d2 | 2018-08-27 14:20:03 +0200 | [diff] [blame] | 682 | </dependency> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 683 | |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 684 | <!-- MySql --> |
| 685 | <dependency> |
| 686 | <groupId>mysql</groupId> |
| 687 | <artifactId>mysql-connector-java</artifactId> |
dependabot[bot] | c60ca47 | 2022-07-25 17:02:41 +0000 | [diff] [blame] | 688 | <version>8.0.30</version> |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 689 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 690 | |
| 691 | <!-- Jersey --> |
| 692 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 693 | <groupId>org.glassfish.jersey.test-framework</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 694 | <artifactId>jersey-test-framework-core</artifactId> |
| 695 | <version>${jersey.version}</version> |
| 696 | <scope>test</scope> |
margaretha | 368d2d3 | 2023-02-28 11:23:22 +0100 | [diff] [blame] | 697 | <exclusions> |
| 698 | <exclusion> |
| 699 | <groupId>org.junit.jupiter</groupId> |
| 700 | <artifactId>junit-jupiter</artifactId> |
| 701 | </exclusion> |
| 702 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 703 | </dependency> |
| 704 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 705 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 706 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 707 | <version>${jersey.version}</version> |
| 708 | <scope>test</scope> |
margaretha | 368d2d3 | 2023-02-28 11:23:22 +0100 | [diff] [blame] | 709 | <exclusions> |
| 710 | <exclusion> |
| 711 | <groupId>org.junit.jupiter</groupId> |
| 712 | <artifactId>junit-jupiter</artifactId> |
| 713 | </exclusion> |
| 714 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 715 | </dependency> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 716 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 717 | <!-- velocity --> |
| 718 | <dependency> |
| 719 | <groupId>org.apache.velocity</groupId> |
| 720 | <artifactId>velocity-engine-core</artifactId> |
dependabot[bot] | 2d36f79 | 2021-03-08 05:46:34 +0000 | [diff] [blame] | 721 | <version>2.3</version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 722 | </dependency> |
| 723 | <dependency> |
margaretha | 327d3ad | 2021-03-15 16:19:35 +0100 | [diff] [blame] | 724 | <groupId>org.apache.velocity.tools</groupId> |
| 725 | <artifactId>velocity-tools-generic</artifactId> |
| 726 | <version>3.1</version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 727 | </dependency> |
| 728 | <!-- mail --> |
| 729 | <dependency> |
| 730 | <groupId>com.sun.mail</groupId> |
| 731 | <artifactId>javax.mail</artifactId> |
dependabot[bot] | 7baae30 | 2020-07-06 05:43:30 +0000 | [diff] [blame] | 732 | <version>1.6.2</version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 733 | </dependency> |
| 734 | <dependency> |
| 735 | <groupId>javax.activation</groupId> |
| 736 | <artifactId>activation</artifactId> |
| 737 | <version>1.1.1</version> |
| 738 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 739 | |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 740 | <!-- OAuth --> |
| 741 | <dependency> |
| 742 | <groupId>org.apache.oltu.oauth2</groupId> |
| 743 | <artifactId>org.apache.oltu.oauth2.authzserver</artifactId> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame] | 744 | <version>1.0.2</version> |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 745 | </dependency> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame] | 746 | <dependency> |
| 747 | <groupId>org.apache.oltu.oauth2</groupId> |
| 748 | <artifactId>org.apache.oltu.oauth2.client</artifactId> |
| 749 | <version>1.0.2</version> |
| 750 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 751 | <!-- JWT --> |
| 752 | <dependency> |
| 753 | <groupId>com.nimbusds</groupId> |
| 754 | <artifactId>nimbus-jose-jwt</artifactId> |
dependabot[bot] | 92ad694 | 2023-02-22 17:12:19 +0000 | [diff] [blame] | 755 | <version>9.31</version> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 756 | </dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 757 | |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 758 | <!-- OpenId --> |
| 759 | <dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 760 | <groupId>com.nimbusds</groupId> |
| 761 | <artifactId>oauth2-oidc-sdk</artifactId> |
dependabot[bot] | b1ba4ec | 2023-05-11 17:56:30 +0000 | [diff] [blame] | 762 | <version>10.9.1</version> |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 763 | </dependency> |
Marc Kupietz | ceea30c | 2020-05-15 16:00:03 +0200 | [diff] [blame] | 764 | |
| 765 | <!-- Project Lombok --> |
| 766 | <dependency> |
| 767 | <groupId>org.projectlombok</groupId> |
| 768 | <artifactId>lombok</artifactId> |
dependabot[bot] | ee4dddc | 2023-02-03 17:00:47 +0000 | [diff] [blame] | 769 | <version>1.18.26</version> |
Marc Kupietz | ceea30c | 2020-05-15 16:00:03 +0200 | [diff] [blame] | 770 | <scope>provided</scope> |
| 771 | </dependency> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 772 | |
| 773 | <!-- Mockserver --> |
| 774 | <dependency> |
| 775 | <groupId>org.mock-server</groupId> |
| 776 | <artifactId>mockserver-netty</artifactId> |
dependabot[bot] | 19fcf08 | 2023-01-12 17:01:24 +0000 | [diff] [blame] | 777 | <version>5.15.0</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 778 | <scope>test</scope> |
| 779 | </dependency> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 780 | |
| 781 | <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text --> |
| 782 | <dependency> |
| 783 | <groupId>org.apache.commons</groupId> |
| 784 | <artifactId>commons-text</artifactId> |
dependabot[bot] | 5e19a78 | 2022-09-29 17:04:17 +0000 | [diff] [blame] | 785 | <version>1.10.0</version> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 786 | </dependency> |
| 787 | |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 788 | </dependencies> |
Akron | 6365605 | 2018-11-07 12:20:13 +0100 | [diff] [blame] | 789 | </project> |