margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 1 | <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"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
margaretha | e9dd996 | 2024-01-24 09:39:35 +0100 | [diff] [blame] | 5 | <groupId>de.ids-mannheim.korap.kustvakt</groupId> |
| 6 | <artifactId>Kustvakt</artifactId> |
margaretha | 503f6a7 | 2025-09-29 10:51:08 +0200 | [diff] [blame] | 7 | <version>0.79.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 8 | <properties> |
| 9 | <java.version>17</java.version> |
| 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
dependabot[bot] | 7574074 | 2025-09-23 09:27:27 +0000 | [diff] [blame] | 11 | <jersey.version>3.1.11</jersey.version> |
Marc Kupietz | 93f55f4 | 2025-09-25 17:06:33 +0200 | [diff] [blame] | 12 | <hibernate.version>7.1.1.Final</hibernate.version> |
Marc Kupietz | adb4857 | 2025-09-17 08:25:07 +0200 | [diff] [blame] | 13 | <spring.version>6.2.11</spring.version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 14 | <!-- spring6.version is used in jersey and defined here |
| 15 | to make sure that jersey uses the correct spring version--> |
| 16 | <spring6.version>${spring.version}</spring6.version> |
Marc Kupietz | 4963855 | 2025-09-25 14:41:35 +0200 | [diff] [blame] | 17 | <jetty.version>12.1.1</jetty.version> |
dependabot[bot] | 9e1136c | 2025-09-26 17:09:45 +0000 | [diff] [blame] | 18 | <flyway.version>11.13.2</flyway.version> |
dependabot[bot] | 58f5918 | 2025-09-23 09:27:44 +0000 | [diff] [blame] | 19 | <log4j.version>2.25.2</log4j.version> |
margaretha | 503f6a7 | 2025-09-29 10:51:08 +0200 | [diff] [blame] | 20 | <krill.version>[0.64.4,)</krill.version> |
| 21 | <koral.version>0.46</koral.version> |
dependabot[bot] | 288849c | 2025-09-23 09:29:09 +0000 | [diff] [blame] | 22 | <!-- Align JBoss Logging with Hibernate Validator 9 requirements --> |
| 23 | <jboss.logging.version>3.6.1.Final</jboss.logging.version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 24 | </properties> |
| 25 | <profiles> |
| 26 | <profile> |
| 27 | <id>full</id> |
| 28 | <activation> |
| 29 | <activeByDefault>true</activeByDefault> |
| 30 | </activation> |
| 31 | <build> |
| 32 | <plugins> |
| 33 | <plugin> |
| 34 | <artifactId>maven-shade-plugin</artifactId> |
dependabot[bot] | 47c11e7 | 2025-09-23 09:28:42 +0000 | [diff] [blame] | 35 | <version>3.6.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 36 | <executions> |
| 37 | <!-- option 1 --> |
| 38 | <execution> |
| 39 | <id>full</id> |
| 40 | <phase>package</phase> |
| 41 | <goals> |
| 42 | <goal>shade</goal> |
| 43 | </goals> |
| 44 | <configuration> |
| 45 | <finalName>Kustvakt-full-${project.version}</finalName> |
| 46 | <transformers> |
| 47 | <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> |
| 48 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 49 | <mainClass> |
| 50 | de.ids_mannheim.korap.server.KustvaktServer |
| 51 | </mainClass> |
| 52 | <manifestEntries> |
| 53 | <Multi-Release>true</Multi-Release> |
| 54 | </manifestEntries> |
| 55 | </transformer> |
| 56 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 57 | <resource>META-INF/spring.handlers</resource> |
| 58 | </transformer> |
| 59 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 60 | <resource>META-INF/spring.schemas</resource> |
| 61 | </transformer> |
| 62 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 63 | <resource>META-INF/spring/aot.factories</resource> |
| 64 | </transformer> |
| 65 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 66 | <resource>META-INF/hk2-locator/default</resource> |
| 67 | </transformer> |
| 68 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 69 | <resource>META-INF/spring.tooling</resource> |
| 70 | </transformer> |
| 71 | </transformers> |
| 72 | <filters> |
| 73 | <filter> |
| 74 | <artifact>*:*</artifact> |
| 75 | <excludes> |
| 76 | <exclude>db/lite/**</exclude> |
margaretha | cd12b37 | 2024-04-10 09:48:28 +0200 | [diff] [blame] | 77 | <exclude>META-INF/*.SF</exclude> |
| 78 | <exclude>META-INF/*.DSA</exclude> |
| 79 | <exclude>META-INF/*.RSA</exclude> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 80 | </excludes> |
| 81 | </filter> |
| 82 | </filters> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | </profile> |
| 90 | |
| 91 | |
| 92 | <profile> |
| 93 | <id>lite</id> |
| 94 | <build> |
| 95 | <plugins> |
| 96 | <plugin> |
| 97 | <artifactId>maven-shade-plugin</artifactId> |
dependabot[bot] | 47c11e7 | 2025-09-23 09:28:42 +0000 | [diff] [blame] | 98 | <version>3.6.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 99 | <executions> |
| 100 | <!--option 2 --> |
| 101 | <execution> |
| 102 | <id>lite</id> |
| 103 | <phase>package</phase> |
| 104 | <goals> |
| 105 | <goal>shade</goal> |
| 106 | </goals> |
| 107 | <configuration> |
| 108 | <finalName> |
| 109 | Kustvakt-lite-${project.version} |
| 110 | </finalName> |
| 111 | <transformers> |
| 112 | <transformer |
| 113 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 114 | <mainClass> |
| 115 | de.ids_mannheim.korap.server.KustvaktLiteServer |
| 116 | </mainClass> |
| 117 | <manifestEntries> |
| 118 | <Multi-Release>true</Multi-Release> |
| 119 | </manifestEntries> |
| 120 | </transformer> |
| 121 | <transformer |
| 122 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 123 | <resource>META-INF/spring.handlers |
| 124 | </resource> |
| 125 | </transformer> |
| 126 | <transformer |
| 127 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 128 | <resource>META-INF/spring.schemas |
| 129 | </resource> |
| 130 | </transformer> |
| 131 | </transformers> |
| 132 | <filters> |
| 133 | <filter> |
| 134 | <artifact>*:*</artifact> |
| 135 | <excludes> |
| 136 | <exclude>db/mysql/**</exclude> |
| 137 | <exclude>db/predefined/**</exclude> |
| 138 | <exclude>db/sqlite/**</exclude> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 139 | <exclude>com.novell.ldap</exclude> |
| 140 | <exclude>com.unboundid</exclude> |
| 141 | <exclude>org.glassfish.jersey.test-framework*</exclude> |
margaretha | 0b17fac | 2024-04-22 09:48:10 +0200 | [diff] [blame] | 142 | <exclude>META-INF/*.SF</exclude> |
| 143 | <exclude>META-INF/*.DSA</exclude> |
| 144 | <exclude>META-INF/*.RSA</exclude> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 145 | </excludes> |
| 146 | </filter> |
| 147 | </filters> |
| 148 | </configuration> |
| 149 | </execution> |
| 150 | </executions> |
| 151 | </plugin> |
| 152 | </plugins> |
| 153 | </build> |
| 154 | </profile> |
| 155 | |
| 156 | </profiles> |
| 157 | <build> |
| 158 | <resources> |
| 159 | <resource> |
| 160 | <directory>src/main/resources</directory> |
| 161 | <filtering>true</filtering> |
| 162 | <!-- <includes> <include>**/*.info</include> <include>**/*.xml</include> |
| 163 | <include>**/*.conf</include> <include>**/*.kustvakt</include> <include>**/*.properties</include> |
| 164 | <include>**/*.sql</include> <include>**/*.vm</include> </includes> --> |
| 165 | </resource> |
| 166 | </resources> |
| 167 | <testResources> |
| 168 | <testResource> |
| 169 | <directory>src/test/resources</directory> |
| 170 | </testResource> |
| 171 | <testResource> |
| 172 | <directory>src/main/resources</directory> |
| 173 | <filtering>true</filtering> |
| 174 | <includes> |
| 175 | <include>**/*.info</include> |
| 176 | <include>**/*.json</include> |
| 177 | <include>**/*.ldif</include> |
| 178 | <include>**/*.properties</include> |
| 179 | </includes> |
| 180 | </testResource> |
| 181 | </testResources> |
| 182 | <plugins> |
| 183 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 184 | <plugin> |
| 185 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 186 | <artifactId>maven-java-formatter-plugin</artifactId> |
| 187 | <version>0.4</version> |
| 188 | <configuration> |
| 189 | <configFile>${project.basedir}/Format.xml</configFile> |
| 190 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
| 191 | <compilerSource>${java.version}</compilerSource> |
| 192 | <compilerCompliance>${java.version}</compilerCompliance> |
| 193 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
| 194 | </configuration> |
| 195 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 196 | </executions> --> |
| 197 | </plugin> |
| 198 | <plugin> |
| 199 | <groupId>org.apache.maven.plugins</groupId> |
| 200 | <artifactId>maven-compiler-plugin</artifactId> |
dependabot[bot] | 8ddf79e | 2025-09-23 09:28:53 +0000 | [diff] [blame] | 201 | <version>3.14.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 202 | <configuration> |
| 203 | <compilerVersion>${java.version}</compilerVersion> |
| 204 | <source>${java.version}</source> |
| 205 | <target>${java.version}</target> |
| 206 | <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 207 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
| 208 | </compilerArguments> --> |
| 209 | <annotationProcessors> |
| 210 | <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 211 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
| 212 | </annotationProcessors> |
| 213 | </configuration> |
| 214 | </plugin> |
| 215 | <plugin> |
| 216 | <groupId>org.apache.maven.plugins</groupId> |
| 217 | <artifactId>maven-source-plugin</artifactId> |
dependabot[bot] | ac820b2 | 2025-09-23 09:28:00 +0000 | [diff] [blame] | 218 | <version>3.3.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 219 | <executions> |
| 220 | <execution> |
| 221 | <id>attach-sources</id> |
| 222 | <goals> |
| 223 | <goal>jar</goal> |
| 224 | </goals> |
| 225 | </execution> |
| 226 | </executions> |
| 227 | </plugin> |
| 228 | <plugin> |
| 229 | <groupId>org.apache.maven.plugins</groupId> |
| 230 | <artifactId>maven-surefire-plugin</artifactId> |
dependabot[bot] | 6f30e2a | 2025-09-23 09:28:39 +0000 | [diff] [blame] | 231 | <version>3.5.4</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 232 | <configuration> |
| 233 | <reuseForks>true</reuseForks> |
| 234 | <forkCount>1</forkCount> |
| 235 | <threadCount>10</threadCount> |
| 236 | <argLine>-Xmx512m |
| 237 | -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> |
| 238 | <excludes> |
| 239 | <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude> |
| 240 | <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude> |
| 241 | <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude> |
| 242 | <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude> |
| 243 | <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude> |
| 244 | <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude> |
| 245 | <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude> |
| 246 | </excludes> |
| 247 | <includes> |
| 248 | <include>de/ids_mannheim/korap/**/*.java</include> |
| 249 | <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include> |
| 250 | </includes> |
| 251 | </configuration> |
| 252 | </plugin> |
| 253 | </plugins> |
| 254 | </build> |
| 255 | |
| 256 | <dependencies> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 257 | <dependency> |
Marc Kupietz | eb9c75e | 2024-01-21 10:26:50 +0100 | [diff] [blame] | 258 | <groupId>de.ids-mannheim.korap.krill</groupId> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 259 | <artifactId>Krill</artifactId> |
| 260 | <version>${krill.version}</version> |
| 261 | <exclusions> |
| 262 | <exclusion> |
| 263 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 264 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 265 | </exclusion> |
| 266 | <exclusion> |
| 267 | <groupId>org.glassfish.jersey.containers</groupId> |
| 268 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 269 | </exclusion> |
| 270 | <exclusion> |
| 271 | <groupId>org.apache.logging.log4j</groupId> |
| 272 | <artifactId>log4j-api</artifactId> |
| 273 | </exclusion> |
| 274 | <exclusion> |
| 275 | <groupId>org.apache.logging.log4j</groupId> |
| 276 | <artifactId>log4j-core</artifactId> |
| 277 | </exclusion> |
| 278 | <exclusion> |
| 279 | <groupId>org.apache.logging.log4j</groupId> |
| 280 | <artifactId>log4j-slf4j-impl</artifactId> |
| 281 | </exclusion> |
| 282 | <exclusion> |
| 283 | <groupId>org.slf4j</groupId> |
| 284 | <artifactId>jul-to-slf4j</artifactId> |
| 285 | </exclusion> |
| 286 | </exclusions> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 287 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 288 | |
| 289 | <dependency> |
Marc Kupietz | eb9c75e | 2024-01-21 10:26:50 +0100 | [diff] [blame] | 290 | <groupId>de.ids-mannheim.korap.koral</groupId> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 291 | <artifactId>Koral</artifactId> |
| 292 | <version>${koral.version}</version> |
| 293 | <exclusions> |
| 294 | <exclusion> |
| 295 | <groupId>org.apache.logging.log4j</groupId> |
| 296 | <artifactId>log4j-api</artifactId> |
| 297 | </exclusion> |
| 298 | <exclusion> |
| 299 | <groupId>org.apache.logging.log4j</groupId> |
| 300 | <artifactId>log4j-core</artifactId> |
| 301 | </exclusion> |
| 302 | <exclusion> |
| 303 | <groupId>org.apache.logging.log4j</groupId> |
| 304 | <artifactId>log4j-slf4j-impl</artifactId> |
| 305 | </exclusion> |
| 306 | <exclusion> |
| 307 | <groupId>org.apache.logging.log4j</groupId> |
| 308 | <artifactId>log4j-jul</artifactId> |
| 309 | </exclusion> |
| 310 | </exclusions> |
| 311 | </dependency> |
| 312 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 313 | <!-- Jersey --> |
| 314 | <dependency> |
| 315 | <groupId>org.glassfish.jersey.core</groupId> |
| 316 | <artifactId>jersey-server</artifactId> |
| 317 | <version>${jersey.version}</version> |
| 318 | </dependency> |
| 319 | |
| 320 | <dependency> |
| 321 | <groupId>org.glassfish.jersey.ext</groupId> |
| 322 | <artifactId>jersey-spring6</artifactId> |
| 323 | <version>${jersey.version}</version> |
| 324 | <!-- as long as we set spring6.version property transitive deps are ok |
| 325 | --> |
| 326 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 327 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 328 | <!-- JSON --> |
| 329 | <dependency> |
| 330 | <groupId>org.glassfish.jersey.media</groupId> |
| 331 | <artifactId>jersey-media-json-jackson</artifactId> |
| 332 | <version>${jersey.version}</version> |
| 333 | <!--<exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> |
| 334 | <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> |
| 335 | <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> --> |
| 336 | </dependency> |
margaretha | ee5af2e | 2025-02-07 09:17:53 +0100 | [diff] [blame] | 337 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 338 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 339 | <!-- Logging --> |
| 340 | <dependency> |
| 341 | <groupId>org.apache.logging.log4j</groupId> |
| 342 | <artifactId>log4j-api</artifactId> |
| 343 | <version>${log4j.version}</version> |
| 344 | </dependency> |
| 345 | <dependency> |
| 346 | <groupId>org.apache.logging.log4j</groupId> |
| 347 | <artifactId>log4j-core</artifactId> |
| 348 | <version>${log4j.version}</version> |
| 349 | <exclusions> |
| 350 | <exclusion> |
| 351 | <groupId>org.apache.logging.log4j</groupId> |
| 352 | <artifactId>log4j-api</artifactId> |
| 353 | </exclusion> |
| 354 | </exclusions> |
| 355 | </dependency> |
| 356 | <dependency> |
| 357 | <groupId>org.apache.logging.log4j</groupId> |
| 358 | <artifactId>log4j-slf4j2-impl</artifactId> |
| 359 | <version>${log4j.version}</version> |
| 360 | </dependency> |
| 361 | <dependency> |
| 362 | <groupId>org.apache.logging.log4j</groupId> |
| 363 | <artifactId>log4j-jul</artifactId> |
| 364 | <version>${log4j.version}</version> |
| 365 | <exclusions> |
| 366 | <exclusion> |
| 367 | <groupId>org.apache.logging.log4j</groupId> |
| 368 | <artifactId>log4j-api</artifactId> |
| 369 | </exclusion> |
| 370 | </exclusions> |
| 371 | </dependency> |
| 372 | <dependency> |
| 373 | <groupId>org.slf4j</groupId> |
| 374 | <artifactId>slf4j-api</artifactId> |
dependabot[bot] | d14c773 | 2025-09-23 09:28:03 +0000 | [diff] [blame] | 375 | <version>2.0.17</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 376 | </dependency> |
| 377 | |
dependabot[bot] | 288849c | 2025-09-23 09:29:09 +0000 | [diff] [blame] | 378 | <!-- Explicitly pin JBoss Logging to a version compatible with HV 9 --> |
| 379 | <dependency> |
| 380 | <groupId>org.jboss.logging</groupId> |
| 381 | <artifactId>jboss-logging</artifactId> |
| 382 | <version>${jboss.logging.version}</version> |
| 383 | </dependency> |
| 384 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 385 | <!-- Java Assist --> |
| 386 | <dependency> |
| 387 | <groupId>org.javassist</groupId> |
| 388 | <artifactId>javassist</artifactId> |
| 389 | <version>3.30.2-GA</version> |
| 390 | </dependency> |
| 391 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 392 | <!-- Encryption --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 393 | <dependency> |
| 394 | <groupId>org.mindrot</groupId> |
| 395 | <artifactId>jbcrypt</artifactId> |
| 396 | <version>0.4</version> |
| 397 | </dependency> |
| 398 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 399 | <!-- Spring --> |
| 400 | <dependency> |
| 401 | <groupId>org.springframework</groupId> |
| 402 | <artifactId>spring-core</artifactId> |
| 403 | <version>${spring.version}</version> |
| 404 | </dependency> |
| 405 | <dependency> |
| 406 | <groupId>org.springframework</groupId> |
| 407 | <artifactId>spring-web</artifactId> |
| 408 | <version>${spring.version}</version> |
| 409 | </dependency> |
| 410 | <dependency> |
| 411 | <groupId>org.springframework</groupId> |
| 412 | <artifactId>spring-orm</artifactId> |
| 413 | <version>${spring.version}</version> |
| 414 | </dependency> |
| 415 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 416 | <dependency> |
| 417 | <groupId>org.springframework</groupId> |
| 418 | <artifactId>spring-context</artifactId> |
| 419 | <version>${spring.version}</version> |
| 420 | </dependency> |
| 421 | <dependency> |
| 422 | <groupId>org.springframework</groupId> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 423 | <artifactId>spring-test</artifactId> |
| 424 | <version>${spring.version}</version> |
| 425 | <scope>compile</scope> |
| 426 | </dependency> |
| 427 | |
| 428 | <!-- apparently this order prevents the spring schemas from being overriden |
| 429 | in META-INF/spring.schemas, thus must stay like this --> |
| 430 | <dependency> |
| 431 | <groupId>org.springframework</groupId> |
| 432 | <artifactId>spring-aop</artifactId> |
| 433 | <version>${spring.version}</version> |
| 434 | </dependency> |
| 435 | <dependency> |
| 436 | <groupId>org.springframework</groupId> |
| 437 | <artifactId>spring-aspects</artifactId> |
| 438 | <version>${spring.version}</version> |
| 439 | </dependency> |
| 440 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 441 | <!-- jetty --> |
| 442 | <dependency> |
| 443 | <groupId>org.eclipse.jetty</groupId> |
| 444 | <artifactId>jetty-server</artifactId> |
| 445 | <version>${jetty.version}</version> |
| 446 | </dependency> |
| 447 | <dependency> |
Marc Kupietz | 4963855 | 2025-09-25 14:41:35 +0200 | [diff] [blame] | 448 | <groupId>org.eclipse.jetty.ee10</groupId> |
| 449 | <artifactId>jetty-ee10-servlet</artifactId> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 450 | <version>${jetty.version}</version> |
| 451 | </dependency> |
| 452 | <dependency> |
Marc Kupietz | 4963855 | 2025-09-25 14:41:35 +0200 | [diff] [blame] | 453 | <groupId>org.eclipse.jetty.ee10</groupId> |
| 454 | <artifactId>jetty-ee10-webapp</artifactId> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 455 | <version>${jetty.version}</version> |
| 456 | </dependency> |
| 457 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 458 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 459 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 460 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 461 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 462 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 463 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 464 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 465 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 466 | </exclusion> </exclusions> </dependency> --> |
| 467 | <dependency> |
| 468 | <groupId>org.apache.httpcomponents</groupId> |
| 469 | <artifactId>httpclient</artifactId> |
| 470 | <version>4.5.14</version> |
| 471 | <exclusions> |
| 472 | <exclusion> |
| 473 | <groupId>commons-logging</groupId> |
| 474 | <artifactId>commons-logging</artifactId> |
| 475 | </exclusion> |
| 476 | </exclusions> |
| 477 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 478 | |
| 479 | <!-- Database --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 480 | <dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 481 | <groupId>org.xerial</groupId> |
| 482 | <artifactId>sqlite-jdbc</artifactId> |
dependabot[bot] | 9e1e84b | 2025-09-23 09:28:07 +0000 | [diff] [blame] | 483 | <version>3.50.3.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 484 | </dependency> |
| 485 | |
margaretha | b9b317d | 2025-01-23 15:13:47 +0100 | [diff] [blame] | 486 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 487 | <!-- MySql --> |
margaretha | b9b317d | 2025-01-23 15:13:47 +0100 | [diff] [blame] | 488 | <!-- EM: disabled due to high security risk, see CVE-2023-22102 |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 489 | <dependency> |
| 490 | <groupId>mysql</groupId> |
| 491 | <artifactId>mysql-connector-java</artifactId> |
| 492 | <version>8.0.30</version> |
margaretha | b9b317d | 2025-01-23 15:13:47 +0100 | [diff] [blame] | 493 | </dependency>--> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 494 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 495 | <dependency> |
| 496 | <groupId>org.apache.commons</groupId> |
| 497 | <artifactId>commons-dbcp2</artifactId> |
dependabot[bot] | fe7216e | 2025-09-23 09:27:37 +0000 | [diff] [blame] | 498 | <version>2.13.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 499 | <exclusions> |
| 500 | <exclusion> |
| 501 | <groupId>commons-logging</groupId> |
| 502 | <artifactId>commons-logging</artifactId> |
| 503 | </exclusion> |
| 504 | </exclusions> |
| 505 | </dependency> |
| 506 | |
| 507 | <!-- Flyway --> |
| 508 | <dependency> |
| 509 | <groupId>org.flywaydb</groupId> |
| 510 | <artifactId>flyway-core</artifactId> |
| 511 | <version>${flyway.version}</version> |
| 512 | </dependency> |
| 513 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 514 | <!-- Hibernate --> |
| 515 | <dependency> |
| 516 | <groupId>org.hibernate.orm</groupId> |
| 517 | <artifactId>hibernate-core</artifactId> |
| 518 | <version>${hibernate.version}</version> |
| 519 | </dependency> |
| 520 | <dependency> |
| 521 | <groupId>org.hibernate.orm</groupId> |
| 522 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 523 | <version>${hibernate.version}</version> |
| 524 | </dependency> |
Marc Kupietz | 93f55f4 | 2025-09-25 17:06:33 +0200 | [diff] [blame] | 525 | <!-- Remove hibernate-ehcache (Ehcache 2 integration removed in modern Hibernate) --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 526 | <dependency> |
| 527 | <groupId>org.hibernate.orm</groupId> |
| 528 | <artifactId>hibernate-c3p0</artifactId> |
| 529 | <version>${hibernate.version}</version> |
| 530 | </dependency> |
| 531 | |
| 532 | <dependency> |
| 533 | <groupId>org.hibernate.orm</groupId> |
| 534 | <artifactId>hibernate-community-dialects</artifactId> |
| 535 | <version>${hibernate.version}</version> |
| 536 | </dependency> |
| 537 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 538 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 539 | <!-- Validation --> |
| 540 | <dependency> |
margaretha | 10618a0 | 2024-02-21 11:06:01 +0100 | [diff] [blame] | 541 | <groupId>jakarta.validation</groupId> |
| 542 | <artifactId>jakarta.validation-api</artifactId> |
dependabot[bot] | c2d71ab | 2025-09-23 09:28:18 +0000 | [diff] [blame] | 543 | <version>3.1.1</version> |
margaretha | 10618a0 | 2024-02-21 11:06:01 +0100 | [diff] [blame] | 544 | </dependency> |
| 545 | |
| 546 | <dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 547 | <groupId>org.hibernate.validator</groupId> |
| 548 | <artifactId>hibernate-validator</artifactId> |
dependabot[bot] | 288849c | 2025-09-23 09:29:09 +0000 | [diff] [blame] | 549 | <version>9.0.1.Final</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 550 | </dependency> |
| 551 | <dependency> |
| 552 | <groupId>org.glassfish</groupId> |
| 553 | <artifactId>jakarta.el</artifactId> |
| 554 | <version>4.0.2</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 555 | </dependency> |
| 556 | |
| 557 | <!-- servlet --> |
| 558 | <dependency> |
| 559 | <groupId>jakarta.persistence</groupId> |
| 560 | <artifactId>jakarta.persistence-api</artifactId> |
dependabot[bot] | a58037b | 2025-09-23 09:28:33 +0000 | [diff] [blame] | 561 | <version>3.2.0</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 562 | </dependency> |
dependabot[bot] | fe7216e | 2025-09-23 09:27:37 +0000 | [diff] [blame] | 563 | <!-- Ensure jakarta.transaction.* classes are available for Hibernate 6 --> |
| 564 | <dependency> |
| 565 | <groupId>jakarta.transaction</groupId> |
| 566 | <artifactId>jakarta.transaction-api</artifactId> |
| 567 | <version>2.0.1</version> |
| 568 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 569 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 570 | <dependency> |
| 571 | <groupId>jakarta.servlet</groupId> |
| 572 | <artifactId>jakarta.servlet-api</artifactId> |
dependabot[bot] | ab8c138 | 2025-09-23 09:28:58 +0000 | [diff] [blame] | 573 | <version>6.1.0</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 574 | </dependency> |
| 575 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 576 | <!-- Utilities --> |
| 577 | <dependency> |
Marc Kupietz | 93f55f4 | 2025-09-25 17:06:33 +0200 | [diff] [blame] | 578 | <groupId>net.sf.ehcache</groupId> |
| 579 | <artifactId>ehcache</artifactId> |
| 580 | <version>2.10.6</version> |
| 581 | </dependency> |
| 582 | <dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 583 | <groupId>joda-time</groupId> |
| 584 | <artifactId>joda-time</artifactId> |
dependabot[bot] | aed7ef0 | 2025-09-23 09:28:21 +0000 | [diff] [blame] | 585 | <version>2.14.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 586 | </dependency> |
Marc Kupietz | 04a6c30 | 2025-09-12 19:05:47 +0200 | [diff] [blame] | 587 | <!-- Apache Commons Lang 3 (maintained) --> |
| 588 | <dependency> |
| 589 | <groupId>org.apache.commons</groupId> |
| 590 | <artifactId>commons-lang3</artifactId> |
dependabot[bot] | e8d4453 | 2025-09-24 17:08:43 +0000 | [diff] [blame] | 591 | <version>3.19.0</version> |
Marc Kupietz | 04a6c30 | 2025-09-12 19:05:47 +0200 | [diff] [blame] | 592 | </dependency> |
Marc Kupietz | 54fdc06 | 2025-09-12 18:47:18 +0200 | [diff] [blame] | 593 | <dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 594 | <groupId>commons-io</groupId> |
| 595 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 23ddec5 | 2025-09-23 09:27:53 +0000 | [diff] [blame] | 596 | <version>2.20.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 597 | </dependency> |
| 598 | <dependency> |
| 599 | <groupId>commons-validator</groupId> |
| 600 | <artifactId>commons-validator</artifactId> |
dependabot[bot] | 4b1cf0d | 2025-09-23 09:28:30 +0000 | [diff] [blame] | 601 | <version>1.10.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 602 | <exclusions> |
| 603 | <exclusion> |
| 604 | <groupId>commons-logging</groupId> |
| 605 | <artifactId>commons-logging</artifactId> |
| 606 | </exclusion> |
| 607 | </exclusions> |
| 608 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 609 | <dependency> |
| 610 | <groupId>org.apache.commons</groupId> |
| 611 | <artifactId>commons-text</artifactId> |
dependabot[bot] | d1736f3 | 2025-09-23 09:29:01 +0000 | [diff] [blame] | 612 | <version>1.14.0</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 613 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 614 | |
| 615 | <!-- LDAP --> |
| 616 | <dependency> |
| 617 | <groupId>com.novell.ldap</groupId> |
| 618 | <artifactId>jldap</artifactId> |
| 619 | <version>4.3</version> |
| 620 | </dependency> |
| 621 | <dependency> |
| 622 | <groupId>com.unboundid</groupId> |
| 623 | <artifactId>unboundid-ldapsdk</artifactId> |
dependabot[bot] | aa4e8ff | 2025-09-23 09:29:04 +0000 | [diff] [blame] | 624 | <version>7.0.3</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 625 | </dependency> |
| 626 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 627 | <!-- OAuth --> |
| 628 | <dependency> |
| 629 | <groupId>com.nimbusds</groupId> |
| 630 | <artifactId>oauth2-oidc-sdk</artifactId> |
dependabot[bot] | 69db3e4 | 2025-09-23 09:28:50 +0000 | [diff] [blame] | 631 | <version>11.29.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 632 | </dependency> |
| 633 | |
| 634 | <!-- Project Lombok --> |
| 635 | <dependency> |
| 636 | <groupId>org.projectlombok</groupId> |
| 637 | <artifactId>lombok</artifactId> |
dependabot[bot] | b17e345 | 2025-09-23 09:27:57 +0000 | [diff] [blame] | 638 | <version>1.18.42</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 639 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 640 | |
| 641 | <!-- Test --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 642 | <dependency> |
| 643 | <groupId>org.mock-server</groupId> |
| 644 | <artifactId>mockserver-netty</artifactId> |
| 645 | <version>5.15.0</version> |
| 646 | <scope>test</scope> |
| 647 | </dependency> |
| 648 | <dependency> |
| 649 | <groupId>org.junit.jupiter</groupId> |
| 650 | <artifactId>junit-jupiter</artifactId> |
dependabot[bot] | 022c992 | 2025-09-30 10:09:27 +0000 | [diff] [blame^] | 651 | <version>6.0.0</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 652 | <scope>test</scope> |
| 653 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 654 | <!-- Jersey Test --> |
| 655 | <dependency> |
| 656 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 657 | <artifactId>jersey-test-framework-core</artifactId> |
| 658 | <version>${jersey.version}</version> |
| 659 | <scope>test</scope> |
| 660 | </dependency> |
| 661 | <dependency> |
| 662 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 663 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 664 | <version>${jersey.version}</version> |
| 665 | <scope>test</scope> |
| 666 | </dependency> |
| 667 | |
| 668 | |
| 669 | <!-- Used in KustvaktClassLoader.java--> |
| 670 | <dependency> |
| 671 | <groupId>org.reflections</groupId> |
| 672 | <artifactId>reflections</artifactId> |
| 673 | <version>0.10.2</version> |
| 674 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 675 | </dependencies> |
| 676 | </project> |