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" |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>de.ids_mannheim.korap</groupId> |
| 5 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 4bae6a0 | 2023-03-13 09:50:33 +0100 | [diff] [blame^] | 6 | <version>0.69.3</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 7 | |
| 8 | <properties> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 9 | <java.version>11</java.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
dependabot[bot] | 6cb700d | 2023-01-11 17:01:32 +0000 | [diff] [blame] | 11 | <spring.version>5.3.25</spring.version> |
dependabot[bot] | 9546574 | 2023-02-17 17:56:32 +0000 | [diff] [blame] | 12 | <jersey.version>2.39</jersey.version> |
margaretha | e4f3a70 | 2023-03-06 16:15:39 +0100 | [diff] [blame] | 13 | <jetty.version>9.4.51.v20230217</jetty.version> |
dependabot[bot] | 775ef16 | 2023-02-06 17:00:48 +0000 | [diff] [blame] | 14 | <hibernate.version>5.6.15.Final</hibernate.version> |
dependabot[bot] | e3ffd2b | 2023-03-06 17:56:43 +0000 | [diff] [blame] | 15 | <flyway.version>9.15.2</flyway.version> |
dependabot[bot] | da98f66 | 2023-02-22 17:12:20 +0000 | [diff] [blame] | 16 | <log4j.version>2.19.0</log4j.version> |
Marc Kupietz | 83664d6 | 2022-11-16 15:41:46 +0100 | [diff] [blame] | 17 | <krill.version>[0.61,)</krill.version> |
Marc Kupietz | 7bb9bd1 | 2022-11-16 07:46:38 +0100 | [diff] [blame] | 18 | <koral.version>[0.39,)</koral.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 19 | </properties> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 20 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 21 | <build> |
| 22 | <resources> |
| 23 | <resource> |
| 24 | <directory>src/main/resources</directory> |
margaretha | a8c364b | 2021-02-19 13:00:31 +0100 | [diff] [blame] | 25 | <filtering>true</filtering> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 26 | </resource> |
| 27 | </resources> |
| 28 | <testResources> |
| 29 | <testResource> |
| 30 | <directory>src/test/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 31 | </testResource> |
| 32 | <testResource> |
| 33 | <directory>src/main/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 34 | </testResource> |
| 35 | </testResources> |
| 36 | <plugins> |
| 37 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 38 | <plugin> |
| 39 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 40 | <artifactId>maven-java-formatter-plugin</artifactId> |
Marc Kupietz | 9f1794c | 2020-03-25 08:24:57 +0100 | [diff] [blame] | 41 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 42 | <configuration> |
| 43 | <configFile>${project.basedir}/Format.xml</configFile> |
| 44 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 45 | <compilerSource>${java.version}</compilerSource> |
| 46 | <compilerCompliance>${java.version}</compilerCompliance> |
| 47 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 48 | </configuration> |
| 49 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 50 | </executions> --> |
| 51 | </plugin> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.maven.plugins</groupId> |
| 54 | <artifactId>maven-compiler-plugin</artifactId> |
margaretha | e4f3a70 | 2023-03-06 16:15:39 +0100 | [diff] [blame] | 55 | <version>3.11.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 56 | <configuration> |
| 57 | <compilerVersion>${java.version}</compilerVersion> |
| 58 | <source>${java.version}</source> |
| 59 | <target>${java.version}</target> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 60 | <annotationProcessors> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 61 | <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 62 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 63 | </annotationProcessors> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 64 | </configuration> |
| 65 | </plugin> |
| 66 | |
| 67 | <!-- build tests jar, so extensions can use fastjerseytest class to build |
| 68 | rest tests --> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 69 | <plugin> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-jar-plugin</artifactId> |
dependabot[bot] | efd2afe | 2022-09-16 17:02:06 +0000 | [diff] [blame] | 72 | <version>3.3.0</version> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 73 | <executions> |
| 74 | <execution> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 75 | <goals> |
| 76 | <goal>test-jar</goal> |
| 77 | </goals> |
| 78 | </execution> |
| 79 | </executions> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 80 | </plugin> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 81 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 82 | <!-- Generate source jar --> |
| 83 | <plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 84 | <groupId>org.apache.maven.plugins</groupId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 85 | <artifactId>maven-source-plugin</artifactId> |
dependabot[bot] | 83c4bd3 | 2020-07-06 05:43:07 +0000 | [diff] [blame] | 86 | <version>3.2.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 87 | <executions> |
| 88 | <execution> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 89 | <id>attach-sources</id> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 90 | <goals> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 91 | <goal>jar</goal> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 95 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 96 | </plugins> |
| 97 | </build> |
| 98 | <dependencies> |
margaretha | d97dcaa | 2022-05-24 11:56:44 +0200 | [diff] [blame] | 99 | <!-- backport --> |
| 100 | <dependency> |
| 101 | <groupId>backport-util-concurrent</groupId> |
| 102 | <artifactId>backport-util-concurrent</artifactId> |
| 103 | <version>3.1</version> |
| 104 | </dependency> |
| 105 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 106 | <!-- Jersey --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 107 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 108 | <groupId>org.glassfish.jersey.core</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 109 | <artifactId>jersey-server</artifactId> |
| 110 | <version>${jersey.version}</version> |
| 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 114 | <groupId>org.glassfish.jersey.ext</groupId> |
| 115 | <artifactId>jersey-spring5</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 116 | <version>${jersey.version}</version> |
| 117 | <exclusions> |
| 118 | <exclusion> |
| 119 | <groupId>org.springframework</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 120 | <artifactId>spring-core</artifactId> |
| 121 | </exclusion> |
| 122 | <exclusion> |
| 123 | <groupId>org.springframework</groupId> |
| 124 | <artifactId>spring-web</artifactId> |
| 125 | </exclusion> |
| 126 | <exclusion> |
| 127 | <groupId>org.springframework</groupId> |
| 128 | <artifactId>spring-beans</artifactId> |
| 129 | </exclusion> |
| 130 | <exclusion> |
| 131 | <groupId>org.springframework</groupId> |
| 132 | <artifactId>spring-context</artifactId> |
| 133 | </exclusion> |
| 134 | <exclusion> |
| 135 | <groupId>org.springframework</groupId> |
| 136 | <artifactId>spring-aop</artifactId> |
| 137 | </exclusion> |
| 138 | </exclusions> |
| 139 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 140 | |
| 141 | <!-- JSON --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 142 | <dependency> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 143 | <groupId>org.glassfish.jersey.media</groupId> |
| 144 | <artifactId>jersey-media-json-jackson</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 145 | <version>${jersey.version}</version> |
margaretha | 10d31a2 | 2019-04-11 15:16:37 +0200 | [diff] [blame] | 146 | <exclusions> |
| 147 | <exclusion> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 148 | <groupId>com.fasterxml.jackson.core</groupId> |
| 149 | <artifactId>jackson-annotations</artifactId> |
margaretha | 10d31a2 | 2019-04-11 15:16:37 +0200 | [diff] [blame] | 150 | </exclusion> |
| 151 | <exclusion> |
abcpro1 | 0c74689 | 2022-11-03 22:47:04 +0000 | [diff] [blame] | 152 | <groupId>com.fasterxml.jackson.core</groupId> |
| 153 | <artifactId>jackson-databind</artifactId> |
margaretha | 10d31a2 | 2019-04-11 15:16:37 +0200 | [diff] [blame] | 154 | </exclusion> |
| 155 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 158 | <groupId>net.minidev</groupId> |
| 159 | <artifactId>json-smart</artifactId> |
dependabot[bot] | d5e2aea | 2023-03-07 17:56:43 +0000 | [diff] [blame] | 160 | <version>2.4.9</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 161 | </dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 162 | |
| 163 | <!-- Jersey 1x originally uses codehaus --> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 164 | <dependency> |
| 165 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 166 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
Marc Kupietz | 675ddf8 | 2022-11-15 17:58:38 +0100 | [diff] [blame] | 167 | <version>2.14.0</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 168 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 169 | |
| 170 | <!-- Flyway --> |
| 171 | <dependency> |
| 172 | <groupId>org.flywaydb</groupId> |
| 173 | <artifactId>flyway-core</artifactId> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 174 | <version>${flyway.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 175 | </dependency> |
| 176 | |
| 177 | <!-- Logging --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 178 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 179 | <groupId>org.apache.logging.log4j</groupId> |
| 180 | <artifactId>log4j-api</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 181 | <version>${log4j.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 182 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 183 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 184 | <groupId>org.apache.logging.log4j</groupId> |
| 185 | <artifactId>log4j-core</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 186 | <version>${log4j.version}</version> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 187 | <exclusions> |
| 188 | <exclusion> |
| 189 | <groupId>org.apache.logging.log4j</groupId> |
| 190 | <artifactId>log4j-api</artifactId> |
| 191 | </exclusion> |
| 192 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 193 | </dependency> |
| 194 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 195 | <groupId>org.apache.logging.log4j</groupId> |
margaretha | 0964c90 | 2023-02-20 10:23:41 +0100 | [diff] [blame] | 196 | <artifactId>log4j-slf4j2-impl</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 197 | <version>${log4j.version}</version> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 198 | </dependency> |
| 199 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 200 | <groupId>org.apache.logging.log4j</groupId> |
| 201 | <artifactId>log4j-jul</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 202 | <version>${log4j.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 203 | <exclusions> |
| 204 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 205 | <groupId>org.apache.logging.log4j</groupId> |
| 206 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 207 | </exclusion> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 208 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 209 | </dependency> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 210 | <dependency> |
| 211 | <groupId>org.slf4j</groupId> |
| 212 | <artifactId>slf4j-api</artifactId> |
dependabot[bot] | e80364f | 2022-12-13 17:00:39 +0000 | [diff] [blame] | 213 | <version>2.0.6</version> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 214 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 215 | |
| 216 | <!-- Java Assist --> |
| 217 | <dependency> |
| 218 | <groupId>org.javassist</groupId> |
| 219 | <artifactId>javassist</artifactId> |
dependabot[bot] | ff71f29 | 2022-09-14 17:02:44 +0000 | [diff] [blame] | 220 | <version>3.29.2-GA</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 221 | </dependency> |
| 222 | |
| 223 | <!-- EM:done --> |
| 224 | |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 225 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 226 | <groupId>junit</groupId> |
| 227 | <artifactId>junit</artifactId> |
dependabot[bot] | c5abefe | 2021-02-24 14:39:55 +0000 | [diff] [blame] | 228 | <version>4.13.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>org.projectlombok</groupId> |
| 232 | <artifactId>lombok</artifactId> |
dependabot[bot] | ccd842e | 2023-02-03 17:00:45 +0000 | [diff] [blame] | 233 | <version>1.18.26</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 234 | </dependency> |
| 235 | <dependency> |
| 236 | <groupId>joda-time</groupId> |
| 237 | <artifactId>joda-time</artifactId> |
dependabot[bot] | 81c06d4 | 2022-12-01 17:00:36 +0000 | [diff] [blame] | 238 | <version>2.12.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>de.ids_mannheim.korap</groupId> |
| 242 | <artifactId>Koral</artifactId> |
margaretha | a8c364b | 2021-02-19 13:00:31 +0100 | [diff] [blame] | 243 | <version>${koral.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 244 | <exclusions> |
| 245 | <exclusion> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 246 | <groupId>org.sonatype.sisu</groupId> |
| 247 | <artifactId>sisu-guava</artifactId> |
| 248 | </exclusion> |
| 249 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 250 | <groupId>org.eclipse.jetty</groupId> |
| 251 | <artifactId>jetty-servlet</artifactId> |
| 252 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 253 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 254 | <groupId>org.apache.logging.log4j</groupId> |
| 255 | <artifactId>log4j-api</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 256 | </exclusion> |
| 257 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 258 | <groupId>org.apache.logging.log4j</groupId> |
| 259 | <artifactId>log4j-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 260 | </exclusion> |
| 261 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 262 | <groupId>org.apache.logging.log4j</groupId> |
| 263 | <artifactId>log4j-slf4j-impl</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 264 | </exclusion> |
| 265 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 266 | <groupId>org.apache.logging.log4j</groupId> |
| 267 | <artifactId>log4j-jul</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 268 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 269 | </exclusions> |
| 270 | </dependency> |
| 271 | |
| 272 | <dependency> |
| 273 | <groupId>org.xerial</groupId> |
| 274 | <artifactId>sqlite-jdbc</artifactId> |
dependabot[bot] | 3f4c53f | 2023-02-23 17:13:13 +0000 | [diff] [blame] | 275 | <version>3.41.0.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 276 | </dependency> |
| 277 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 278 | <dependency> |
| 279 | <groupId>org.apache.commons</groupId> |
| 280 | <artifactId>commons-dbcp2</artifactId> |
dependabot[bot] | 26101ec | 2021-08-04 17:01:44 +0000 | [diff] [blame] | 281 | <version>2.9.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 282 | </dependency> |
| 283 | |
| 284 | <dependency> |
| 285 | <groupId>commons-validator</groupId> |
| 286 | <artifactId>commons-validator</artifactId> |
dependabot[bot] | d9501c0 | 2020-08-10 05:37:45 +0000 | [diff] [blame] | 287 | <version>1.7</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 288 | </dependency> |
| 289 | |
| 290 | <dependency> |
| 291 | <groupId>org.mindrot</groupId> |
| 292 | <artifactId>jbcrypt</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 293 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 294 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 295 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 296 | <dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 297 | <groupId>javax.annotation</groupId> |
| 298 | <artifactId>javax.annotation-api</artifactId> |
| 299 | <version>1.3.2</version> |
| 300 | </dependency> |
| 301 | |
| 302 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 303 | <groupId>de.ids_mannheim.korap</groupId> |
| 304 | <artifactId>Krill</artifactId> |
margaretha | a8c364b | 2021-02-19 13:00:31 +0100 | [diff] [blame] | 305 | <version>${krill.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 306 | <exclusions> |
| 307 | <exclusion> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 308 | <groupId>org.glassfish.jersey.containers</groupId> |
| 309 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 310 | </exclusion> |
| 311 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 312 | <groupId>org.xerial</groupId> |
| 313 | <artifactId>sqlite-jdbc</artifactId> |
| 314 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 315 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 316 | <groupId>org.apache.logging.log4j</groupId> |
| 317 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 318 | </exclusion> |
| 319 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 320 | <groupId>org.apache.logging.log4j</groupId> |
| 321 | <artifactId>log4j-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 322 | </exclusion> |
| 323 | <exclusion> |
| 324 | <groupId>org.apache.logging.log4j</groupId> |
| 325 | <artifactId>log4j-slf4j-impl</artifactId> |
| 326 | </exclusion> |
| 327 | <exclusion> |
| 328 | <groupId>org.slf4j</groupId> |
| 329 | <artifactId>jul-to-slf4j</artifactId> |
| 330 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 331 | </exclusions> |
| 332 | </dependency> |
| 333 | <dependency> |
| 334 | <groupId>org.reflections</groupId> |
| 335 | <artifactId>reflections</artifactId> |
dependabot[bot] | 778c94d | 2021-10-25 17:01:39 +0000 | [diff] [blame] | 336 | <version>0.10.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 337 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 338 | |
| 339 | <!-- Spring --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 340 | <dependency> |
| 341 | <groupId>org.springframework</groupId> |
| 342 | <artifactId>spring-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 343 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 344 | </dependency> |
| 345 | <dependency> |
| 346 | <groupId>org.springframework</groupId> |
| 347 | <artifactId>spring-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 348 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 349 | </dependency> |
| 350 | <dependency> |
| 351 | <groupId>org.springframework</groupId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 352 | <artifactId>spring-orm</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 353 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 354 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 355 | |
| 356 | <dependency> |
| 357 | <groupId>org.springframework</groupId> |
| 358 | <artifactId>spring-jdbc</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 359 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 360 | </dependency> |
| 361 | <dependency> |
| 362 | <groupId>org.springframework</groupId> |
| 363 | <artifactId>spring-tx</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 364 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 365 | </dependency> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 366 | <!-- <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 367 | <groupId>org.springframework.security</groupId> |
| 368 | <artifactId>spring-security-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 369 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 370 | </dependency> |
| 371 | <dependency> |
| 372 | <groupId>org.springframework.security</groupId> |
| 373 | <artifactId>spring-security-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 374 | <version>${spring.version}</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 375 | </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 376 | <!-- EM: done --> |
| 377 | <dependency> |
| 378 | <groupId>org.springframework</groupId> |
| 379 | <artifactId>spring-context</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 380 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 381 | </dependency> |
| 382 | <dependency> |
| 383 | <groupId>org.springframework</groupId> |
| 384 | <artifactId>spring-context-support</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 385 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 386 | </dependency> |
| 387 | <dependency> |
| 388 | <groupId>org.springframework</groupId> |
| 389 | <artifactId>spring-test</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 390 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 391 | <scope>compile</scope> |
| 392 | </dependency> |
| 393 | |
| 394 | <!-- apparently this order prevents the spring schemas from being overriden |
| 395 | in META-INF/spring.schemas, thus must stay like this --> |
| 396 | <dependency> |
| 397 | <groupId>org.springframework</groupId> |
| 398 | <artifactId>spring-aop</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 399 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 400 | </dependency> |
| 401 | <dependency> |
| 402 | <groupId>org.springframework</groupId> |
| 403 | <artifactId>spring-aspects</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 404 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 405 | </dependency> |
| 406 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 407 | <!-- end copy --> |
| 408 | |
| 409 | <dependency> |
| 410 | <groupId>commons-collections</groupId> |
| 411 | <artifactId>commons-collections</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 412 | <version>3.2.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 413 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 414 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 415 | <!-- jetty --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 416 | <dependency> |
| 417 | <groupId>org.eclipse.jetty</groupId> |
| 418 | <artifactId>jetty-server</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 419 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 420 | </dependency> |
| 421 | <dependency> |
| 422 | <groupId>org.eclipse.jetty</groupId> |
| 423 | <artifactId>jetty-servlet</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 424 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 425 | </dependency> |
| 426 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 427 | <groupId>org.eclipse.jetty</groupId> |
| 428 | <artifactId>jetty-webapp</artifactId> |
| 429 | <version>${jetty.version}</version> |
| 430 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 431 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 432 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 433 | <groupId>asm</groupId> |
| 434 | <artifactId>asm</artifactId> |
| 435 | <version>3.3.1</version> |
| 436 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 437 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 438 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 439 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 440 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 441 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 442 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 443 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 444 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 445 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 446 | </exclusion> </exclusions> </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 447 | <dependency> |
| 448 | <groupId>org.apache.httpcomponents</groupId> |
| 449 | <artifactId>httpclient</artifactId> |
dependabot[bot] | b6d5709 | 2022-12-05 17:00:49 +0000 | [diff] [blame] | 450 | <version>4.5.14</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 451 | </dependency> |
| 452 | <dependency> |
| 453 | <groupId>commons-io</groupId> |
| 454 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 98284a0 | 2021-07-13 17:01:39 +0000 | [diff] [blame] | 455 | <version>2.11.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 456 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 457 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 458 | <!-- Hibernate --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 459 | <dependency> |
| 460 | <groupId>org.hibernate</groupId> |
| 461 | <artifactId>hibernate-ehcache</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 462 | <version>${hibernate.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 463 | </dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 464 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 465 | <groupId>org.hibernate</groupId> |
| 466 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 467 | <version>${hibernate.version}</version> |
| 468 | <scope>provided</scope> |
| 469 | </dependency> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 470 | <dependency> |
| 471 | <groupId>com.github.gwenn</groupId> |
| 472 | <artifactId>sqlite-dialect</artifactId> |
| 473 | <version>0.1.0</version> |
| 474 | </dependency> |
| 475 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 476 | <dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 477 | <groupId>javax.servlet</groupId> |
| 478 | <artifactId>javax.servlet-api</artifactId> |
| 479 | <version>4.0.1</version> |
| 480 | </dependency> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 481 | <dependency> |
| 482 | <groupId>org.apache.commons</groupId> |
| 483 | <artifactId>commons-text</artifactId> |
dependabot[bot] | 0074013 | 2022-09-29 17:04:25 +0000 | [diff] [blame] | 484 | <version>1.10.0</version> |
Marc Kupietz | 0a37867 | 2022-04-30 09:35:27 +0200 | [diff] [blame] | 485 | <scope>test</scope> |
| 486 | </dependency> |
| 487 | </dependencies> |
Akron | 730ed08 | 2018-01-31 17:10:13 +0100 | [diff] [blame] | 488 | </project> |