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