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