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 | 394efe8 | 2023-08-16 11:29:51 +0200 | [diff] [blame] | 6 | <version>0.71.1</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] | 7760653 | 2023-05-16 17:57:39 +0000 | [diff] [blame] | 16 | <log4j.version>2.20.0</log4j.version> |
margaretha | cd1d722 | 2023-08-16 10:23:29 +0200 | [diff] [blame] | 17 | <krill.version>[0.61.4,)</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] | 3dea5c7 | 2023-06-16 17:56:55 +0000 | [diff] [blame] | 30 | <version>3.5.0</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] | 3dea5c7 | 2023-06-16 17:56:55 +0000 | [diff] [blame] | 82 | <version>3.5.0</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> |
dependabot[bot] | 9546574 | 2023-02-17 17:56:32 +0000 | [diff] [blame] | 216 | <dependencies> |
| 217 | <dependency> |
| 218 | <groupId>org.apache.maven.surefire</groupId> |
| 219 | <artifactId>surefire-junit47</artifactId> |
dependabot[bot] | 2b05137 | 2023-06-07 17:56:39 +0000 | [diff] [blame] | 220 | <version>3.1.2</version> |
dependabot[bot] | 9546574 | 2023-02-17 17:56:32 +0000 | [diff] [blame] | 221 | </dependency> |
| 222 | </dependencies> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 223 | <configuration> |
margaretha | 0a45be1 | 2018-07-12 15:06:30 +0200 | [diff] [blame] | 224 | <reuseForks>true</reuseForks> |
| 225 | <forkCount>1</forkCount> |
| 226 | <threadCount>10</threadCount> |
Marc Kupietz | ddd9a8b | 2022-11-17 17:24:58 +0100 | [diff] [blame] | 227 | <argLine>-Xmx512m |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 228 | -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 229 | <excludes> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 230 | <exclude>de/ids_mannheim/korap/authentication/APIAuthenticationTest.java</exclude> |
| 231 | <exclude>de/ids_mannheim/korap/authentication/AuthenticationFilterTest.java</exclude> |
| 232 | <exclude>de/ids_mannheim/korap/authentication/Kustvakt*.java</exclude> |
| 233 | <exclude>de/ids_mannheim/korap/authentication/LdapTest.java</exclude> |
| 234 | <exclude>de/ids_mannheim/korap/authentication/Random*.java</exclude> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 235 | <exclude>de/ids_mannheim/korap/web/controller/TokenExpiryTest.java</exclude> |
margaretha | 7cd52d1 | 2023-03-15 16:56:06 +0100 | [diff] [blame] | 236 | <exclude>de/ids_mannheim/korap/web/controller/AdminLoadVCTest.java</exclude> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 237 | </excludes> |
| 238 | <includes> |
| 239 | <include>de/ids_mannheim/korap/**/*.java</include> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 240 | <include>de/ids_mannheim/korap/authentication/LdapAuth3Test.java</include> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 241 | </includes> |
| 242 | </configuration> |
| 243 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 244 | </plugins> |
| 245 | </build> |
| 246 | |
| 247 | <dependencies> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 248 | <!-- backport --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 249 | <dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 250 | <groupId>backport-util-concurrent</groupId> |
| 251 | <artifactId>backport-util-concurrent</artifactId> |
| 252 | <version>3.1</version> |
| 253 | </dependency> |
| 254 | |
| 255 | <!-- Jersey --> |
| 256 | <dependency> |
| 257 | <groupId>org.glassfish.jersey.core</groupId> |
| 258 | <artifactId>jersey-server</artifactId> |
| 259 | <version>${jersey.version}</version> |
| 260 | </dependency> |
| 261 | |
| 262 | <dependency> |
| 263 | <groupId>org.glassfish.jersey.ext</groupId> |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 264 | <artifactId>jersey-spring6</artifactId> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 265 | <version>${jersey.version}</version> |
| 266 | <exclusions> |
| 267 | <exclusion> |
| 268 | <groupId>org.springframework</groupId> |
| 269 | <artifactId>spring-core</artifactId> |
| 270 | </exclusion> |
| 271 | <exclusion> |
| 272 | <groupId>org.springframework</groupId> |
| 273 | <artifactId>spring-web</artifactId> |
| 274 | </exclusion> |
| 275 | <exclusion> |
| 276 | <groupId>org.springframework</groupId> |
| 277 | <artifactId>spring-beans</artifactId> |
| 278 | </exclusion> |
| 279 | <exclusion> |
| 280 | <groupId>org.springframework</groupId> |
| 281 | <artifactId>spring-context</artifactId> |
| 282 | </exclusion> |
| 283 | <exclusion> |
| 284 | <groupId>org.springframework</groupId> |
| 285 | <artifactId>spring-aop</artifactId> |
| 286 | </exclusion> |
| 287 | </exclusions> |
| 288 | </dependency> |
| 289 | |
| 290 | <!-- JSON --> |
| 291 | <dependency> |
| 292 | <groupId>org.glassfish.jersey.media</groupId> |
| 293 | <artifactId>jersey-media-json-jackson</artifactId> |
| 294 | <version>${jersey.version}</version> |
margaretha | 03a270f | 2023-08-21 13:59:03 +0200 | [diff] [blame] | 295 | <!--<exclusions> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 296 | <exclusion> |
| 297 | <groupId>com.fasterxml.jackson.core</groupId> |
| 298 | <artifactId>jackson-annotations</artifactId> |
| 299 | </exclusion> |
| 300 | <exclusion> |
| 301 | <groupId>com.fasterxml.jackson.core</groupId> |
| 302 | <artifactId>jackson-databind</artifactId> |
| 303 | </exclusion> |
margaretha | 03a270f | 2023-08-21 13:59:03 +0200 | [diff] [blame] | 304 | </exclusions>--> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>net.minidev</groupId> |
| 308 | <artifactId>json-smart</artifactId> |
dependabot[bot] | 60d16bc | 2023-07-10 17:39:03 +0000 | [diff] [blame] | 309 | <version>2.5.0</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 310 | </dependency> |
| 311 | |
| 312 | <!-- Jersey 1x originally uses codehaus --> |
margaretha | 03a270f | 2023-08-21 13:59:03 +0200 | [diff] [blame] | 313 | <!--<dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 314 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 315 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
dependabot[bot] | 6e1188d | 2023-05-17 17:56:52 +0000 | [diff] [blame] | 316 | <version>2.15.1</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 317 | </dependency> |
margaretha | 03a270f | 2023-08-21 13:59:03 +0200 | [diff] [blame] | 318 | <dependency> |
| 319 | <groupId>com.fasterxml.jackson.jakarta.rs</groupId> |
| 320 | <artifactId>jackson-jakarta-rs-json-provider</artifactId> |
| 321 | <version>2.15.2</version> |
| 322 | </dependency>--> |
| 323 | |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 324 | |
| 325 | <!-- Flyway --> |
| 326 | <dependency> |
| 327 | <groupId>org.flywaydb</groupId> |
| 328 | <artifactId>flyway-core</artifactId> |
| 329 | <version>${flyway.version}</version> |
| 330 | </dependency> |
| 331 | |
| 332 | <!-- Logging --> |
| 333 | <dependency> |
| 334 | <groupId>org.apache.logging.log4j</groupId> |
| 335 | <artifactId>log4j-api</artifactId> |
| 336 | <version>${log4j.version}</version> |
| 337 | </dependency> |
| 338 | <dependency> |
| 339 | <groupId>org.apache.logging.log4j</groupId> |
| 340 | <artifactId>log4j-core</artifactId> |
| 341 | <version>${log4j.version}</version> |
| 342 | <exclusions> |
| 343 | <exclusion> |
| 344 | <groupId>org.apache.logging.log4j</groupId> |
| 345 | <artifactId>log4j-api</artifactId> |
| 346 | </exclusion> |
| 347 | </exclusions> |
| 348 | </dependency> |
| 349 | <dependency> |
| 350 | <groupId>org.apache.logging.log4j</groupId> |
| 351 | <artifactId>log4j-slf4j2-impl</artifactId> |
| 352 | <version>${log4j.version}</version> |
| 353 | </dependency> |
| 354 | <dependency> |
| 355 | <groupId>org.apache.logging.log4j</groupId> |
| 356 | <artifactId>log4j-jul</artifactId> |
| 357 | <version>${log4j.version}</version> |
| 358 | <exclusions> |
| 359 | <exclusion> |
| 360 | <groupId>org.apache.logging.log4j</groupId> |
| 361 | <artifactId>log4j-api</artifactId> |
| 362 | </exclusion> |
| 363 | </exclusions> |
| 364 | </dependency> |
| 365 | <dependency> |
| 366 | <groupId>org.slf4j</groupId> |
| 367 | <artifactId>slf4j-api</artifactId> |
| 368 | <version>2.0.7</version> |
| 369 | </dependency> |
| 370 | |
| 371 | <!-- Java Assist --> |
| 372 | <dependency> |
| 373 | <groupId>org.javassist</groupId> |
| 374 | <artifactId>javassist</artifactId> |
| 375 | <version>3.29.2-GA</version> |
| 376 | </dependency> |
| 377 | |
| 378 | <!-- EM:done --> |
| 379 | |
| 380 | <dependency> |
| 381 | <groupId>junit</groupId> |
| 382 | <artifactId>junit</artifactId> |
| 383 | <version>4.13.2</version> |
| 384 | </dependency> |
| 385 | <dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 386 | <groupId>joda-time</groupId> |
| 387 | <artifactId>joda-time</artifactId> |
| 388 | <version>2.12.5</version> |
| 389 | </dependency> |
| 390 | <dependency> |
| 391 | <groupId>de.ids_mannheim.korap</groupId> |
| 392 | <artifactId>Koral</artifactId> |
| 393 | <version>${koral.version}</version> |
| 394 | <exclusions> |
| 395 | <exclusion> |
| 396 | <groupId>org.sonatype.sisu</groupId> |
| 397 | <artifactId>sisu-guava</artifactId> |
| 398 | </exclusion> |
| 399 | <exclusion> |
| 400 | <groupId>org.eclipse.jetty</groupId> |
| 401 | <artifactId>jetty-servlet</artifactId> |
| 402 | </exclusion> |
| 403 | <exclusion> |
| 404 | <groupId>org.apache.logging.log4j</groupId> |
| 405 | <artifactId>log4j-api</artifactId> |
| 406 | </exclusion> |
| 407 | <exclusion> |
| 408 | <groupId>org.apache.logging.log4j</groupId> |
| 409 | <artifactId>log4j-core</artifactId> |
| 410 | </exclusion> |
| 411 | <exclusion> |
| 412 | <groupId>org.apache.logging.log4j</groupId> |
| 413 | <artifactId>log4j-slf4j-impl</artifactId> |
| 414 | </exclusion> |
| 415 | <exclusion> |
| 416 | <groupId>org.apache.logging.log4j</groupId> |
| 417 | <artifactId>log4j-jul</artifactId> |
| 418 | </exclusion> |
| 419 | </exclusions> |
| 420 | </dependency> |
| 421 | |
| 422 | <dependency> |
| 423 | <groupId>org.xerial</groupId> |
| 424 | <artifactId>sqlite-jdbc</artifactId> |
dependabot[bot] | 482f250 | 2023-05-22 17:56:53 +0000 | [diff] [blame] | 425 | <version>3.42.0.0</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 426 | </dependency> |
| 427 | |
| 428 | <dependency> |
| 429 | <groupId>org.apache.commons</groupId> |
| 430 | <artifactId>commons-dbcp2</artifactId> |
| 431 | <version>2.9.0</version> |
margaretha | 2c50860 | 2023-08-21 22:29:33 +0200 | [diff] [blame] | 432 | <exclusions> |
| 433 | <exclusion> |
| 434 | <groupId>commons-logging</groupId> |
| 435 | <artifactId>commons-logging</artifactId> |
| 436 | </exclusion> |
| 437 | </exclusions> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 438 | </dependency> |
| 439 | |
| 440 | <dependency> |
| 441 | <groupId>commons-validator</groupId> |
| 442 | <artifactId>commons-validator</artifactId> |
| 443 | <version>1.7</version> |
margaretha | 2c50860 | 2023-08-21 22:29:33 +0200 | [diff] [blame] | 444 | <exclusions> |
| 445 | <exclusion> |
| 446 | <groupId>commons-logging</groupId> |
| 447 | <artifactId>commons-logging</artifactId> |
| 448 | </exclusion> |
| 449 | </exclusions> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 450 | </dependency> |
| 451 | |
| 452 | <dependency> |
| 453 | <groupId>org.mindrot</groupId> |
| 454 | <artifactId>jbcrypt</artifactId> |
| 455 | <version>0.4</version> |
| 456 | </dependency> |
| 457 | |
margaretha | 4b883ec | 2023-09-25 12:21:24 +0200 | [diff] [blame] | 458 | <!--<dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 459 | <groupId>javax.annotation</groupId> |
| 460 | <artifactId>javax.annotation-api</artifactId> |
| 461 | <version>1.3.2</version> |
margaretha | 4b883ec | 2023-09-25 12:21:24 +0200 | [diff] [blame] | 462 | </dependency>--> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 463 | |
| 464 | <dependency> |
| 465 | <groupId>de.ids_mannheim.korap</groupId> |
| 466 | <artifactId>Krill</artifactId> |
| 467 | <version>${krill.version}</version> |
| 468 | <exclusions> |
| 469 | <exclusion> |
margaretha | 03a270f | 2023-08-21 13:59:03 +0200 | [diff] [blame] | 470 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 471 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 472 | </exclusion> |
| 473 | <exclusion> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 474 | <groupId>org.glassfish.jersey.containers</groupId> |
| 475 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 476 | </exclusion> |
| 477 | <exclusion> |
| 478 | <groupId>org.xerial</groupId> |
| 479 | <artifactId>sqlite-jdbc</artifactId> |
| 480 | </exclusion> |
| 481 | <exclusion> |
| 482 | <groupId>org.apache.logging.log4j</groupId> |
| 483 | <artifactId>log4j-api</artifactId> |
| 484 | </exclusion> |
| 485 | <exclusion> |
| 486 | <groupId>org.apache.logging.log4j</groupId> |
| 487 | <artifactId>log4j-core</artifactId> |
| 488 | </exclusion> |
| 489 | <exclusion> |
| 490 | <groupId>org.apache.logging.log4j</groupId> |
| 491 | <artifactId>log4j-slf4j-impl</artifactId> |
| 492 | </exclusion> |
| 493 | <exclusion> |
| 494 | <groupId>org.slf4j</groupId> |
| 495 | <artifactId>jul-to-slf4j</artifactId> |
| 496 | </exclusion> |
| 497 | </exclusions> |
| 498 | </dependency> |
| 499 | <dependency> |
| 500 | <groupId>org.reflections</groupId> |
| 501 | <artifactId>reflections</artifactId> |
| 502 | <version>0.10.2</version> |
| 503 | </dependency> |
| 504 | |
| 505 | <!-- Spring --> |
| 506 | <dependency> |
| 507 | <groupId>org.springframework</groupId> |
| 508 | <artifactId>spring-core</artifactId> |
| 509 | <version>${spring.version}</version> |
| 510 | </dependency> |
| 511 | <dependency> |
| 512 | <groupId>org.springframework</groupId> |
| 513 | <artifactId>spring-web</artifactId> |
| 514 | <version>${spring.version}</version> |
| 515 | </dependency> |
| 516 | <dependency> |
| 517 | <groupId>org.springframework</groupId> |
| 518 | <artifactId>spring-orm</artifactId> |
| 519 | <version>${spring.version}</version> |
| 520 | </dependency> |
| 521 | |
| 522 | <dependency> |
| 523 | <groupId>org.springframework</groupId> |
| 524 | <artifactId>spring-jdbc</artifactId> |
| 525 | <version>${spring.version}</version> |
| 526 | </dependency> |
| 527 | <dependency> |
| 528 | <groupId>org.springframework</groupId> |
| 529 | <artifactId>spring-tx</artifactId> |
| 530 | <version>${spring.version}</version> |
| 531 | </dependency> |
| 532 | <!-- <dependency> |
| 533 | <groupId>org.springframework.security</groupId> |
| 534 | <artifactId>spring-security-core</artifactId> |
| 535 | <version>${spring.version}</version> |
| 536 | </dependency> |
| 537 | <dependency> |
| 538 | <groupId>org.springframework.security</groupId> |
| 539 | <artifactId>spring-security-web</artifactId> |
| 540 | <version>${spring.version}</version> |
| 541 | </dependency> --> |
| 542 | <!-- EM: done --> |
| 543 | <dependency> |
| 544 | <groupId>org.springframework</groupId> |
| 545 | <artifactId>spring-context</artifactId> |
| 546 | <version>${spring.version}</version> |
| 547 | </dependency> |
| 548 | <dependency> |
| 549 | <groupId>org.springframework</groupId> |
| 550 | <artifactId>spring-context-support</artifactId> |
| 551 | <version>${spring.version}</version> |
| 552 | </dependency> |
| 553 | <dependency> |
| 554 | <groupId>org.springframework</groupId> |
| 555 | <artifactId>spring-test</artifactId> |
| 556 | <version>${spring.version}</version> |
| 557 | <scope>compile</scope> |
| 558 | </dependency> |
| 559 | |
| 560 | <!-- apparently this order prevents the spring schemas from being overriden |
| 561 | in META-INF/spring.schemas, thus must stay like this --> |
| 562 | <dependency> |
| 563 | <groupId>org.springframework</groupId> |
| 564 | <artifactId>spring-aop</artifactId> |
| 565 | <version>${spring.version}</version> |
| 566 | </dependency> |
| 567 | <dependency> |
| 568 | <groupId>org.springframework</groupId> |
| 569 | <artifactId>spring-aspects</artifactId> |
| 570 | <version>${spring.version}</version> |
| 571 | </dependency> |
| 572 | |
| 573 | <!-- end copy --> |
| 574 | |
| 575 | <dependency> |
| 576 | <groupId>commons-collections</groupId> |
| 577 | <artifactId>commons-collections</artifactId> |
| 578 | <version>3.2.2</version> |
| 579 | </dependency> |
| 580 | |
| 581 | <!-- jetty --> |
| 582 | <dependency> |
| 583 | <groupId>org.eclipse.jetty</groupId> |
| 584 | <artifactId>jetty-server</artifactId> |
| 585 | <version>${jetty.version}</version> |
| 586 | </dependency> |
| 587 | <dependency> |
| 588 | <groupId>org.eclipse.jetty</groupId> |
| 589 | <artifactId>jetty-servlet</artifactId> |
| 590 | <version>${jetty.version}</version> |
| 591 | </dependency> |
| 592 | <dependency> |
| 593 | <groupId>org.eclipse.jetty</groupId> |
| 594 | <artifactId>jetty-webapp</artifactId> |
| 595 | <version>${jetty.version}</version> |
| 596 | </dependency> |
| 597 | |
| 598 | <dependency> |
| 599 | <groupId>asm</groupId> |
| 600 | <artifactId>asm</artifactId> |
| 601 | <version>3.3.1</version> |
| 602 | </dependency> |
| 603 | |
| 604 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 605 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 606 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 607 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 608 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 609 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 610 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 611 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 612 | </exclusion> </exclusions> </dependency> --> |
| 613 | <dependency> |
| 614 | <groupId>org.apache.httpcomponents</groupId> |
| 615 | <artifactId>httpclient</artifactId> |
| 616 | <version>4.5.14</version> |
margaretha | 2c50860 | 2023-08-21 22:29:33 +0200 | [diff] [blame] | 617 | <exclusions> |
| 618 | <exclusion> |
| 619 | <groupId>commons-logging</groupId> |
| 620 | <artifactId>commons-logging</artifactId> |
| 621 | </exclusion> |
| 622 | </exclusions> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 623 | </dependency> |
| 624 | <dependency> |
| 625 | <groupId>commons-io</groupId> |
| 626 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 79c1e34 | 2023-06-08 17:56:39 +0000 | [diff] [blame] | 627 | <version>2.13.0</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 628 | </dependency> |
| 629 | |
| 630 | <!-- Hibernate --> |
| 631 | <dependency> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 632 | <groupId>org.hibernate.orm</groupId> |
| 633 | <artifactId>hibernate-core</artifactId> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 634 | <version>${hibernate.version}</version> |
| 635 | </dependency> |
| 636 | <dependency> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 637 | <groupId>org.hibernate.orm</groupId> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 638 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 639 | <version>${hibernate.version}</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 640 | </dependency> |
| 641 | <dependency> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 642 | <groupId>org.hibernate.orm</groupId> |
| 643 | <artifactId>hibernate-ehcache</artifactId> |
| 644 | <version>${hibernate.ehcache.version}</version> |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 645 | <exclusions> |
| 646 | <exclusion> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 647 | <groupId>org.hibernate</groupId> |
| 648 | <artifactId>hibernate-core</artifactId> |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 649 | </exclusion> |
| 650 | </exclusions> |
| 651 | </dependency> |
| 652 | <dependency> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 653 | <groupId>org.hibernate.orm</groupId> |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 654 | <artifactId>hibernate-c3p0</artifactId> |
| 655 | <version>${hibernate.version}</version> |
| 656 | </dependency> |
| 657 | |
| 658 | <!-- Sqlite --> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 659 | <!--<dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 660 | <groupId>com.github.gwenn</groupId> |
| 661 | <artifactId>sqlite-dialect</artifactId> |
| 662 | <version>0.1.0</version> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 663 | </dependency>--> |
| 664 | <dependency> |
| 665 | <groupId>org.hibernate.orm</groupId> |
| 666 | <artifactId>hibernate-community-dialects</artifactId> |
| 667 | <version>${hibernate.version}</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 668 | </dependency> |
| 669 | |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 670 | <dependency> |
| 671 | <groupId>jakarta.persistence</groupId> |
| 672 | <artifactId>jakarta.persistence-api</artifactId> |
| 673 | <version>3.1.0</version> |
| 674 | </dependency> |
| 675 | |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 676 | <!-- servlet --> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 677 | <dependency> |
margaretha | 96c309d | 2023-08-16 12:24:12 +0200 | [diff] [blame] | 678 | <groupId>jakarta.servlet</groupId> |
| 679 | <artifactId>jakarta.servlet-api</artifactId> |
| 680 | <version>6.0.0</version> |
| 681 | <scope>provided</scope> |
| 682 | </dependency> |
| 683 | |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 684 | <!-- needed by apache Oltu --> |
margaretha | 96c309d | 2023-08-16 12:24:12 +0200 | [diff] [blame] | 685 | <dependency> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 686 | <groupId>javax.servlet</groupId> |
| 687 | <artifactId>javax.servlet-api</artifactId> |
| 688 | <version>4.0.1</version> |
| 689 | </dependency> |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 690 | |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 691 | <dependency> |
| 692 | <groupId>org.apache.commons</groupId> |
| 693 | <artifactId>commons-text</artifactId> |
| 694 | <version>1.10.0</version> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 695 | </dependency> |
| 696 | <!--<dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 697 | <groupId>de.ids_mannheim.korap</groupId> |
| 698 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 4bae6a0 | 2023-03-13 09:50:33 +0100 | [diff] [blame] | 699 | <version>${project.version}</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 700 | </dependency> |
| 701 | <dependency> |
| 702 | <groupId>de.ids_mannheim.korap</groupId> |
| 703 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 4bae6a0 | 2023-03-13 09:50:33 +0100 | [diff] [blame] | 704 | <version>${project.version}</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 705 | <classifier>tests</classifier> |
| 706 | <type>test-jar</type> |
| 707 | <scope>test</scope> |
margaretha | 6a925fe | 2023-05-15 16:50:32 +0200 | [diff] [blame] | 708 | </dependency>--> |
margaretha | f558f7f | 2023-08-16 10:52:14 +0200 | [diff] [blame] | 709 | |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 710 | <!-- LDAP --> |
| 711 | <dependency> |
| 712 | <groupId>com.novell.ldap</groupId> |
| 713 | <artifactId>jldap</artifactId> |
| 714 | <version>4.3</version> |
| 715 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 716 | <dependency> |
| 717 | <groupId>com.unboundid</groupId> |
| 718 | <artifactId>unboundid-ldapsdk</artifactId> |
dependabot[bot] | 771d8fa | 2023-06-08 17:56:48 +0000 | [diff] [blame] | 719 | <version>6.0.9</version> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 720 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 721 | |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 722 | |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 723 | <!-- MySql --> |
| 724 | <dependency> |
| 725 | <groupId>mysql</groupId> |
| 726 | <artifactId>mysql-connector-java</artifactId> |
dependabot[bot] | c60ca47 | 2022-07-25 17:02:41 +0000 | [diff] [blame] | 727 | <version>8.0.30</version> |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 728 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 729 | |
| 730 | <!-- Jersey --> |
| 731 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 732 | <groupId>org.glassfish.jersey.test-framework</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 733 | <artifactId>jersey-test-framework-core</artifactId> |
| 734 | <version>${jersey.version}</version> |
| 735 | <scope>test</scope> |
margaretha | 368d2d3 | 2023-02-28 11:23:22 +0100 | [diff] [blame] | 736 | <exclusions> |
| 737 | <exclusion> |
| 738 | <groupId>org.junit.jupiter</groupId> |
| 739 | <artifactId>junit-jupiter</artifactId> |
| 740 | </exclusion> |
| 741 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 742 | </dependency> |
| 743 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 744 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 745 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 746 | <version>${jersey.version}</version> |
| 747 | <scope>test</scope> |
margaretha | 368d2d3 | 2023-02-28 11:23:22 +0100 | [diff] [blame] | 748 | <exclusions> |
| 749 | <exclusion> |
| 750 | <groupId>org.junit.jupiter</groupId> |
| 751 | <artifactId>junit-jupiter</artifactId> |
| 752 | </exclusion> |
| 753 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 754 | </dependency> |
margaretha | 3495447 | 2018-10-24 20:05:17 +0200 | [diff] [blame] | 755 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 756 | <!-- velocity --> |
| 757 | <dependency> |
| 758 | <groupId>org.apache.velocity</groupId> |
| 759 | <artifactId>velocity-engine-core</artifactId> |
dependabot[bot] | 2d36f79 | 2021-03-08 05:46:34 +0000 | [diff] [blame] | 760 | <version>2.3</version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 761 | </dependency> |
| 762 | <dependency> |
margaretha | 327d3ad | 2021-03-15 16:19:35 +0100 | [diff] [blame] | 763 | <groupId>org.apache.velocity.tools</groupId> |
| 764 | <artifactId>velocity-tools-generic</artifactId> |
| 765 | <version>3.1</version> |
margaretha | 2c50860 | 2023-08-21 22:29:33 +0200 | [diff] [blame] | 766 | <exclusions> |
| 767 | <exclusion> |
| 768 | <groupId>commons-logging</groupId> |
| 769 | <artifactId>commons-logging</artifactId> |
| 770 | </exclusion> |
| 771 | </exclusions> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 772 | </dependency> |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 773 | |
| 774 | <!-- Mail --> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 775 | <dependency> |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 776 | <groupId>com.sun.mail</groupId> |
| 777 | <artifactId>jakarta.mail</artifactId> |
| 778 | <version>2.0.1</version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 779 | </dependency> |
margaretha | 238df8f | 2023-08-16 12:38:12 +0200 | [diff] [blame] | 780 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 781 | <dependency> |
margaretha | 490a59b | 2023-08-21 10:44:16 +0200 | [diff] [blame] | 782 | <groupId>jakarta.activation</groupId> |
| 783 | <artifactId>jakarta.activation-api</artifactId> |
| 784 | <version>2.1.2</version> |
| 785 | </dependency> |
| 786 | |
margaretha | 4b883ec | 2023-09-25 12:21:24 +0200 | [diff] [blame] | 787 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 788 | <groupId>javax.activation</groupId> |
| 789 | <artifactId>activation</artifactId> |
| 790 | <version>1.1.1</version> |
margaretha | 4b883ec | 2023-09-25 12:21:24 +0200 | [diff] [blame] | 791 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 792 | |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 793 | <!-- OAuth --> |
| 794 | <dependency> |
| 795 | <groupId>org.apache.oltu.oauth2</groupId> |
| 796 | <artifactId>org.apache.oltu.oauth2.authzserver</artifactId> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame] | 797 | <version>1.0.2</version> |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 798 | </dependency> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame] | 799 | <dependency> |
| 800 | <groupId>org.apache.oltu.oauth2</groupId> |
| 801 | <artifactId>org.apache.oltu.oauth2.client</artifactId> |
| 802 | <version>1.0.2</version> |
| 803 | </dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 804 | |
margaretha | 6672fe5 | 2023-09-28 09:24:25 +0200 | [diff] [blame^] | 805 | <!-- Nimbus --> |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 806 | <dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 807 | <groupId>com.nimbusds</groupId> |
| 808 | <artifactId>oauth2-oidc-sdk</artifactId> |
dependabot[bot] | 5a172a9 | 2023-08-04 17:04:35 +0000 | [diff] [blame] | 809 | <version>10.13.2</version> |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 810 | </dependency> |
Marc Kupietz | ceea30c | 2020-05-15 16:00:03 +0200 | [diff] [blame] | 811 | |
| 812 | <!-- Project Lombok --> |
| 813 | <dependency> |
| 814 | <groupId>org.projectlombok</groupId> |
| 815 | <artifactId>lombok</artifactId> |
dependabot[bot] | 949bef6 | 2023-05-25 17:56:39 +0000 | [diff] [blame] | 816 | <version>1.18.28</version> |
Marc Kupietz | ceea30c | 2020-05-15 16:00:03 +0200 | [diff] [blame] | 817 | </dependency> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 818 | |
| 819 | <!-- Mockserver --> |
| 820 | <dependency> |
| 821 | <groupId>org.mock-server</groupId> |
| 822 | <artifactId>mockserver-netty</artifactId> |
dependabot[bot] | 19fcf08 | 2023-01-12 17:01:24 +0000 | [diff] [blame] | 823 | <version>5.15.0</version> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 824 | <scope>test</scope> |
| 825 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 826 | </dependencies> |
Akron | 6365605 | 2018-11-07 12:20:13 +0100 | [diff] [blame] | 827 | </project> |