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