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