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 | 34595a5 | 2024-10-28 08:54:10 +0100 | [diff] [blame^] | 7 | <version>0.75</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> |
| 11 | <jersey.version>3.1.5</jersey.version> |
| 12 | <hibernate.ehcache.version>6.0.0.Alpha7</hibernate.ehcache.version> |
| 13 | <hibernate.version>6.1.7.Final</hibernate.version> |
dependabot[bot] | dd7b450 | 2024-10-18 20:21:05 +0000 | [diff] [blame] | 14 | <spring.version>6.1.14</spring.version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 15 | <!-- spring6.version is used in jersey and defined here |
| 16 | to make sure that jersey uses the correct spring version--> |
| 17 | <spring6.version>${spring.version}</spring6.version> |
dependabot[bot] | 342c684 | 2024-10-14 21:09:38 +0000 | [diff] [blame] | 18 | <jetty.version>11.0.24</jetty.version> |
margaretha | d9d7c39 | 2024-01-30 12:14:15 +0100 | [diff] [blame] | 19 | <flyway.version>10.6.0</flyway.version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 20 | <log4j.version>2.22.1</log4j.version> |
margaretha | 236d727 | 2024-08-08 22:32:05 +0200 | [diff] [blame] | 21 | <krill.version>[0.63.2,)</krill.version> |
margaretha | 52ccdb9 | 2024-07-12 12:40:40 +0200 | [diff] [blame] | 22 | <koral.version>[0.44,)</koral.version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 23 | </properties> |
| 24 | <profiles> |
| 25 | <profile> |
| 26 | <id>full</id> |
| 27 | <activation> |
| 28 | <activeByDefault>true</activeByDefault> |
| 29 | </activation> |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <artifactId>maven-shade-plugin</artifactId> |
| 34 | <version>3.5.1</version> |
| 35 | <executions> |
| 36 | <!-- option 1 --> |
| 37 | <execution> |
| 38 | <id>full</id> |
| 39 | <phase>package</phase> |
| 40 | <goals> |
| 41 | <goal>shade</goal> |
| 42 | </goals> |
| 43 | <configuration> |
| 44 | <finalName>Kustvakt-full-${project.version}</finalName> |
| 45 | <transformers> |
| 46 | <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> |
| 47 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 48 | <mainClass> |
| 49 | de.ids_mannheim.korap.server.KustvaktServer |
| 50 | </mainClass> |
| 51 | <manifestEntries> |
| 52 | <Multi-Release>true</Multi-Release> |
| 53 | </manifestEntries> |
| 54 | </transformer> |
| 55 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 56 | <resource>META-INF/spring.handlers</resource> |
| 57 | </transformer> |
| 58 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 59 | <resource>META-INF/spring.schemas</resource> |
| 60 | </transformer> |
| 61 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 62 | <resource>META-INF/spring/aot.factories</resource> |
| 63 | </transformer> |
| 64 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 65 | <resource>META-INF/hk2-locator/default</resource> |
| 66 | </transformer> |
| 67 | <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 68 | <resource>META-INF/spring.tooling</resource> |
| 69 | </transformer> |
| 70 | </transformers> |
| 71 | <filters> |
| 72 | <filter> |
| 73 | <artifact>*:*</artifact> |
| 74 | <excludes> |
| 75 | <exclude>db/lite/**</exclude> |
margaretha | cd12b37 | 2024-04-10 09:48:28 +0200 | [diff] [blame] | 76 | <exclude>META-INF/*.SF</exclude> |
| 77 | <exclude>META-INF/*.DSA</exclude> |
| 78 | <exclude>META-INF/*.RSA</exclude> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 79 | </excludes> |
| 80 | </filter> |
| 81 | </filters> |
| 82 | </configuration> |
| 83 | </execution> |
| 84 | </executions> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
| 88 | </profile> |
| 89 | |
| 90 | |
| 91 | <profile> |
| 92 | <id>lite</id> |
| 93 | <build> |
| 94 | <plugins> |
| 95 | <plugin> |
| 96 | <artifactId>maven-shade-plugin</artifactId> |
| 97 | <version>3.5.1</version> |
| 98 | <executions> |
| 99 | <!--option 2 --> |
| 100 | <execution> |
| 101 | <id>lite</id> |
| 102 | <phase>package</phase> |
| 103 | <goals> |
| 104 | <goal>shade</goal> |
| 105 | </goals> |
| 106 | <configuration> |
| 107 | <finalName> |
| 108 | Kustvakt-lite-${project.version} |
| 109 | </finalName> |
| 110 | <transformers> |
| 111 | <transformer |
| 112 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 113 | <mainClass> |
| 114 | de.ids_mannheim.korap.server.KustvaktLiteServer |
| 115 | </mainClass> |
| 116 | <manifestEntries> |
| 117 | <Multi-Release>true</Multi-Release> |
| 118 | </manifestEntries> |
| 119 | </transformer> |
| 120 | <transformer |
| 121 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 122 | <resource>META-INF/spring.handlers |
| 123 | </resource> |
| 124 | </transformer> |
| 125 | <transformer |
| 126 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 127 | <resource>META-INF/spring.schemas |
| 128 | </resource> |
| 129 | </transformer> |
| 130 | </transformers> |
| 131 | <filters> |
| 132 | <filter> |
| 133 | <artifact>*:*</artifact> |
| 134 | <excludes> |
| 135 | <exclude>db/mysql/**</exclude> |
| 136 | <exclude>db/predefined/**</exclude> |
| 137 | <exclude>db/sqlite/**</exclude> |
| 138 | <exclude>db/test/**</exclude> |
| 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> |
| 201 | <version>3.12.1</version> |
| 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> |
| 218 | <version>3.3.0</version> |
| 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> |
margaretha | d9d7c39 | 2024-01-30 12:14:15 +0100 | [diff] [blame] | 231 | <version>3.2.5</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> |
| 337 | <dependency> |
| 338 | <groupId>net.minidev</groupId> |
| 339 | <artifactId>json-smart</artifactId> |
| 340 | <version>2.5.0</version> |
| 341 | </dependency> |
| 342 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 343 | <!-- Logging --> |
| 344 | <dependency> |
| 345 | <groupId>org.apache.logging.log4j</groupId> |
| 346 | <artifactId>log4j-api</artifactId> |
| 347 | <version>${log4j.version}</version> |
| 348 | </dependency> |
| 349 | <dependency> |
| 350 | <groupId>org.apache.logging.log4j</groupId> |
| 351 | <artifactId>log4j-core</artifactId> |
| 352 | <version>${log4j.version}</version> |
| 353 | <exclusions> |
| 354 | <exclusion> |
| 355 | <groupId>org.apache.logging.log4j</groupId> |
| 356 | <artifactId>log4j-api</artifactId> |
| 357 | </exclusion> |
| 358 | </exclusions> |
| 359 | </dependency> |
| 360 | <dependency> |
| 361 | <groupId>org.apache.logging.log4j</groupId> |
| 362 | <artifactId>log4j-slf4j2-impl</artifactId> |
| 363 | <version>${log4j.version}</version> |
| 364 | </dependency> |
| 365 | <dependency> |
| 366 | <groupId>org.apache.logging.log4j</groupId> |
| 367 | <artifactId>log4j-jul</artifactId> |
| 368 | <version>${log4j.version}</version> |
| 369 | <exclusions> |
| 370 | <exclusion> |
| 371 | <groupId>org.apache.logging.log4j</groupId> |
| 372 | <artifactId>log4j-api</artifactId> |
| 373 | </exclusion> |
| 374 | </exclusions> |
| 375 | </dependency> |
| 376 | <dependency> |
| 377 | <groupId>org.slf4j</groupId> |
| 378 | <artifactId>slf4j-api</artifactId> |
margaretha | d9d7c39 | 2024-01-30 12:14:15 +0100 | [diff] [blame] | 379 | <version>2.0.11</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 380 | </dependency> |
| 381 | |
| 382 | <!-- Java Assist --> |
| 383 | <dependency> |
| 384 | <groupId>org.javassist</groupId> |
| 385 | <artifactId>javassist</artifactId> |
| 386 | <version>3.30.2-GA</version> |
| 387 | </dependency> |
| 388 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 389 | <!-- Encryption --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 390 | <dependency> |
| 391 | <groupId>org.mindrot</groupId> |
| 392 | <artifactId>jbcrypt</artifactId> |
| 393 | <version>0.4</version> |
| 394 | </dependency> |
| 395 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 396 | <!-- Spring --> |
| 397 | <dependency> |
| 398 | <groupId>org.springframework</groupId> |
| 399 | <artifactId>spring-core</artifactId> |
| 400 | <version>${spring.version}</version> |
| 401 | </dependency> |
| 402 | <dependency> |
| 403 | <groupId>org.springframework</groupId> |
| 404 | <artifactId>spring-web</artifactId> |
| 405 | <version>${spring.version}</version> |
| 406 | </dependency> |
| 407 | <dependency> |
| 408 | <groupId>org.springframework</groupId> |
| 409 | <artifactId>spring-orm</artifactId> |
| 410 | <version>${spring.version}</version> |
| 411 | </dependency> |
| 412 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 413 | <dependency> |
| 414 | <groupId>org.springframework</groupId> |
| 415 | <artifactId>spring-context</artifactId> |
| 416 | <version>${spring.version}</version> |
| 417 | </dependency> |
| 418 | <dependency> |
| 419 | <groupId>org.springframework</groupId> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 420 | <artifactId>spring-test</artifactId> |
| 421 | <version>${spring.version}</version> |
| 422 | <scope>compile</scope> |
| 423 | </dependency> |
| 424 | |
| 425 | <!-- apparently this order prevents the spring schemas from being overriden |
| 426 | in META-INF/spring.schemas, thus must stay like this --> |
| 427 | <dependency> |
| 428 | <groupId>org.springframework</groupId> |
| 429 | <artifactId>spring-aop</artifactId> |
| 430 | <version>${spring.version}</version> |
| 431 | </dependency> |
| 432 | <dependency> |
| 433 | <groupId>org.springframework</groupId> |
| 434 | <artifactId>spring-aspects</artifactId> |
| 435 | <version>${spring.version}</version> |
| 436 | </dependency> |
| 437 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 438 | <!-- jetty --> |
| 439 | <dependency> |
| 440 | <groupId>org.eclipse.jetty</groupId> |
| 441 | <artifactId>jetty-server</artifactId> |
| 442 | <version>${jetty.version}</version> |
| 443 | </dependency> |
| 444 | <dependency> |
| 445 | <groupId>org.eclipse.jetty</groupId> |
| 446 | <artifactId>jetty-servlet</artifactId> |
| 447 | <version>${jetty.version}</version> |
| 448 | </dependency> |
| 449 | <dependency> |
| 450 | <groupId>org.eclipse.jetty</groupId> |
| 451 | <artifactId>jetty-webapp</artifactId> |
| 452 | <version>${jetty.version}</version> |
| 453 | </dependency> |
| 454 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 455 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 456 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 457 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 458 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 459 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 460 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 461 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 462 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 463 | </exclusion> </exclusions> </dependency> --> |
| 464 | <dependency> |
| 465 | <groupId>org.apache.httpcomponents</groupId> |
| 466 | <artifactId>httpclient</artifactId> |
| 467 | <version>4.5.14</version> |
| 468 | <exclusions> |
| 469 | <exclusion> |
| 470 | <groupId>commons-logging</groupId> |
| 471 | <artifactId>commons-logging</artifactId> |
| 472 | </exclusion> |
| 473 | </exclusions> |
| 474 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 475 | |
| 476 | <!-- Database --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 477 | <dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 478 | <groupId>org.xerial</groupId> |
| 479 | <artifactId>sqlite-jdbc</artifactId> |
margaretha | d9d7c39 | 2024-01-30 12:14:15 +0100 | [diff] [blame] | 480 | <version>3.45.0.0</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 481 | </dependency> |
| 482 | |
| 483 | <!-- MySql --> |
| 484 | <dependency> |
| 485 | <groupId>mysql</groupId> |
| 486 | <artifactId>mysql-connector-java</artifactId> |
| 487 | <version>8.0.30</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 488 | </dependency> |
| 489 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 490 | <dependency> |
| 491 | <groupId>org.apache.commons</groupId> |
| 492 | <artifactId>commons-dbcp2</artifactId> |
| 493 | <version>2.9.0</version> |
| 494 | <exclusions> |
| 495 | <exclusion> |
| 496 | <groupId>commons-logging</groupId> |
| 497 | <artifactId>commons-logging</artifactId> |
| 498 | </exclusion> |
| 499 | </exclusions> |
| 500 | </dependency> |
| 501 | |
| 502 | <!-- Flyway --> |
| 503 | <dependency> |
| 504 | <groupId>org.flywaydb</groupId> |
| 505 | <artifactId>flyway-core</artifactId> |
| 506 | <version>${flyway.version}</version> |
| 507 | </dependency> |
| 508 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 509 | <!-- Hibernate --> |
| 510 | <dependency> |
| 511 | <groupId>org.hibernate.orm</groupId> |
| 512 | <artifactId>hibernate-core</artifactId> |
| 513 | <version>${hibernate.version}</version> |
| 514 | </dependency> |
| 515 | <dependency> |
| 516 | <groupId>org.hibernate.orm</groupId> |
| 517 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 518 | <version>${hibernate.version}</version> |
| 519 | </dependency> |
| 520 | <dependency> |
| 521 | <groupId>org.hibernate.orm</groupId> |
| 522 | <artifactId>hibernate-ehcache</artifactId> |
| 523 | <version>${hibernate.ehcache.version}</version> |
| 524 | <exclusions> |
| 525 | <exclusion> |
| 526 | <groupId>org.hibernate</groupId> |
| 527 | <artifactId>hibernate-core</artifactId> |
| 528 | </exclusion> |
| 529 | </exclusions> |
| 530 | </dependency> |
| 531 | <dependency> |
| 532 | <groupId>org.hibernate.orm</groupId> |
| 533 | <artifactId>hibernate-c3p0</artifactId> |
| 534 | <version>${hibernate.version}</version> |
| 535 | </dependency> |
| 536 | |
| 537 | <dependency> |
| 538 | <groupId>org.hibernate.orm</groupId> |
| 539 | <artifactId>hibernate-community-dialects</artifactId> |
| 540 | <version>${hibernate.version}</version> |
| 541 | </dependency> |
| 542 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 543 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 544 | <!-- Validation --> |
| 545 | <dependency> |
margaretha | 10618a0 | 2024-02-21 11:06:01 +0100 | [diff] [blame] | 546 | <groupId>jakarta.validation</groupId> |
| 547 | <artifactId>jakarta.validation-api</artifactId> |
| 548 | <version>3.0.2</version> |
| 549 | </dependency> |
| 550 | |
| 551 | <dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 552 | <groupId>org.hibernate.validator</groupId> |
| 553 | <artifactId>hibernate-validator</artifactId> |
| 554 | <version>8.0.1.Final</version> |
| 555 | </dependency> |
| 556 | <dependency> |
| 557 | <groupId>org.glassfish</groupId> |
| 558 | <artifactId>jakarta.el</artifactId> |
| 559 | <version>4.0.2</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 560 | </dependency> |
| 561 | |
| 562 | <!-- servlet --> |
| 563 | <dependency> |
| 564 | <groupId>jakarta.persistence</groupId> |
| 565 | <artifactId>jakarta.persistence-api</artifactId> |
| 566 | <version>3.1.0</version> |
| 567 | </dependency> |
| 568 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 569 | <dependency> |
| 570 | <groupId>jakarta.servlet</groupId> |
| 571 | <artifactId>jakarta.servlet-api</artifactId> |
| 572 | <version>6.0.0</version> |
| 573 | <scope>provided</scope> |
| 574 | </dependency> |
| 575 | |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 576 | <!-- Utilities --> |
| 577 | <dependency> |
| 578 | <groupId>joda-time</groupId> |
| 579 | <artifactId>joda-time</artifactId> |
margaretha | d9d7c39 | 2024-01-30 12:14:15 +0100 | [diff] [blame] | 580 | <version>2.12.6</version> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 581 | </dependency> |
| 582 | <dependency> |
| 583 | <groupId>commons-io</groupId> |
| 584 | <artifactId>commons-io</artifactId> |
| 585 | <version>2.15.1</version> |
| 586 | </dependency> |
| 587 | <dependency> |
| 588 | <groupId>commons-validator</groupId> |
| 589 | <artifactId>commons-validator</artifactId> |
| 590 | <version>1.8.0</version> |
| 591 | <exclusions> |
| 592 | <exclusion> |
| 593 | <groupId>commons-logging</groupId> |
| 594 | <artifactId>commons-logging</artifactId> |
| 595 | </exclusion> |
| 596 | </exclusions> |
| 597 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 598 | <dependency> |
| 599 | <groupId>org.apache.commons</groupId> |
| 600 | <artifactId>commons-text</artifactId> |
| 601 | <version>1.11.0</version> |
| 602 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 603 | |
| 604 | <!-- LDAP --> |
| 605 | <dependency> |
| 606 | <groupId>com.novell.ldap</groupId> |
| 607 | <artifactId>jldap</artifactId> |
| 608 | <version>4.3</version> |
| 609 | </dependency> |
| 610 | <dependency> |
| 611 | <groupId>com.unboundid</groupId> |
| 612 | <artifactId>unboundid-ldapsdk</artifactId> |
| 613 | <version>6.0.11</version> |
| 614 | </dependency> |
| 615 | |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 616 | <!-- OAuth --> |
| 617 | <dependency> |
| 618 | <groupId>com.nimbusds</groupId> |
| 619 | <artifactId>oauth2-oidc-sdk</artifactId> |
dependabot[bot] | 6be1db2 | 2024-01-08 17:40:42 +0000 | [diff] [blame] | 620 | <version>11.9.1</version> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 621 | </dependency> |
| 622 | |
| 623 | <!-- Project Lombok --> |
| 624 | <dependency> |
| 625 | <groupId>org.projectlombok</groupId> |
| 626 | <artifactId>lombok</artifactId> |
| 627 | <version>1.18.30</version> |
| 628 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 629 | |
| 630 | <!-- Test --> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 631 | <dependency> |
| 632 | <groupId>org.mock-server</groupId> |
| 633 | <artifactId>mockserver-netty</artifactId> |
| 634 | <version>5.15.0</version> |
| 635 | <scope>test</scope> |
| 636 | </dependency> |
| 637 | <dependency> |
| 638 | <groupId>org.junit.jupiter</groupId> |
| 639 | <artifactId>junit-jupiter</artifactId> |
| 640 | <version>5.10.1</version> |
| 641 | <scope>test</scope> |
| 642 | </dependency> |
margaretha | 7677aa4 | 2024-01-05 10:26:06 +0100 | [diff] [blame] | 643 | <!-- Jersey Test --> |
| 644 | <dependency> |
| 645 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 646 | <artifactId>jersey-test-framework-core</artifactId> |
| 647 | <version>${jersey.version}</version> |
| 648 | <scope>test</scope> |
| 649 | </dependency> |
| 650 | <dependency> |
| 651 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 652 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 653 | <version>${jersey.version}</version> |
| 654 | <scope>test</scope> |
| 655 | </dependency> |
| 656 | |
| 657 | |
| 658 | <!-- Used in KustvaktClassLoader.java--> |
| 659 | <dependency> |
| 660 | <groupId>org.reflections</groupId> |
| 661 | <artifactId>reflections</artifactId> |
| 662 | <version>0.10.2</version> |
| 663 | </dependency> |
margaretha | fbfe287 | 2024-01-04 23:29:28 +0100 | [diff] [blame] | 664 | </dependencies> |
| 665 | </project> |