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 | 7c1f428 | 2021-11-29 17:27:53 +0100 | [diff] [blame] | 6 | <version>0.65</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 7 | |
| 8 | <properties> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 9 | <java.version>1.8</java.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
dependabot[bot] | 351357c | 2021-11-11 17:02:00 +0000 | [diff] [blame] | 11 | <spring.version>5.3.13</spring.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 12 | <jersey.version>1.19.4</jersey.version> |
dependabot[bot] | 6702ad4 | 2021-10-01 17:01:49 +0000 | [diff] [blame] | 13 | <jetty.version>9.4.44.v20210927</jetty.version> |
dependabot[bot] | 9b30c9e | 2021-10-27 17:01:31 +0000 | [diff] [blame] | 14 | <hibernate.version>5.6.1.Final</hibernate.version> |
dependabot[bot] | 6c026ea | 2021-11-17 17:01:24 +0000 | [diff] [blame] | 15 | <flyway.version>8.0.5</flyway.version> |
margaretha | ad1300b | 2021-12-13 17:36:29 +0100 | [diff] [blame^] | 16 | <log4j.version>[2.16.0,)</log4j.version> |
| 17 | <krill.version>[0.60.2,)</krill.version> |
| 18 | <koral.version>[0.38.1,)</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> |
dependabot[bot] | 14dc9d2 | 2020-07-16 05:44:21 +0000 | [diff] [blame] | 55 | <version>3.8.1</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> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 72 | <version>3.2.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 | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 99 | <!-- Jersey --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 100 | <dependency> |
| 101 | <groupId>com.sun.jersey</groupId> |
| 102 | <artifactId>jersey-bundle</artifactId> |
| 103 | <version>${jersey.version}</version> |
| 104 | </dependency> |
| 105 | <!--EM: added --> |
| 106 | <dependency> |
| 107 | <groupId>com.sun.jersey</groupId> |
| 108 | <artifactId>jersey-server</artifactId> |
| 109 | <version>${jersey.version}</version> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>com.sun.jersey.contribs</groupId> |
| 114 | <artifactId>jersey-spring</artifactId> |
| 115 | <version>${jersey.version}</version> |
| 116 | <exclusions> |
| 117 | <exclusion> |
| 118 | <groupId>org.springframework</groupId> |
| 119 | <artifactId>spring</artifactId> |
| 120 | </exclusion> |
| 121 | <exclusion> |
| 122 | <groupId>org.springframework</groupId> |
| 123 | <artifactId>spring-core</artifactId> |
| 124 | </exclusion> |
| 125 | <exclusion> |
| 126 | <groupId>org.springframework</groupId> |
| 127 | <artifactId>spring-web</artifactId> |
| 128 | </exclusion> |
| 129 | <exclusion> |
| 130 | <groupId>org.springframework</groupId> |
| 131 | <artifactId>spring-beans</artifactId> |
| 132 | </exclusion> |
| 133 | <exclusion> |
| 134 | <groupId>org.springframework</groupId> |
| 135 | <artifactId>spring-context</artifactId> |
| 136 | </exclusion> |
| 137 | <exclusion> |
| 138 | <groupId>org.springframework</groupId> |
| 139 | <artifactId>spring-aop</artifactId> |
| 140 | </exclusion> |
| 141 | </exclusions> |
| 142 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 143 | |
| 144 | <!-- JSON --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 145 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 146 | <groupId>com.sun.jersey</groupId> |
| 147 | <artifactId>jersey-json</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 148 | <version>${jersey.version}</version> |
margaretha | 10d31a2 | 2019-04-11 15:16:37 +0200 | [diff] [blame] | 149 | <exclusions> |
| 150 | <exclusion> |
| 151 | <groupId>org.codehaus.jackson</groupId> |
| 152 | <artifactId>jackson-core-asl</artifactId> |
| 153 | </exclusion> |
| 154 | <exclusion> |
| 155 | <groupId>org.codehaus.jackson</groupId> |
| 156 | <artifactId>jackson-mapper-asl</artifactId> |
| 157 | </exclusion> |
| 158 | <exclusion> |
| 159 | <groupId>org.codehaus.jackson</groupId> |
| 160 | <artifactId>jackson-jaxrs</artifactId> |
| 161 | </exclusion> |
| 162 | <exclusion> |
| 163 | <groupId>org.codehaus.jackson</groupId> |
| 164 | <artifactId>jackson-xc</artifactId> |
| 165 | </exclusion> |
| 166 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 167 | </dependency> |
| 168 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 169 | <groupId>net.minidev</groupId> |
| 170 | <artifactId>json-smart</artifactId> |
dependabot[bot] | b786242 | 2021-05-13 08:44:43 +0000 | [diff] [blame] | 171 | <version>2.4.7</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 172 | </dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 173 | |
| 174 | <!-- Jersey 1x originally uses codehaus --> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 175 | <dependency> |
| 176 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 177 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
dependabot[bot] | 3a045b2 | 2021-08-27 17:01:22 +0000 | [diff] [blame] | 178 | <version>2.12.5</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 179 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 180 | |
| 181 | <!-- Flyway --> |
| 182 | <dependency> |
| 183 | <groupId>org.flywaydb</groupId> |
| 184 | <artifactId>flyway-core</artifactId> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 185 | <version>${flyway.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 186 | </dependency> |
| 187 | |
| 188 | <!-- Logging --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 189 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 190 | <groupId>org.apache.logging.log4j</groupId> |
| 191 | <artifactId>log4j-api</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 192 | <version>${log4j.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 193 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 194 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 195 | <groupId>org.apache.logging.log4j</groupId> |
| 196 | <artifactId>log4j-core</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 197 | <version>${log4j.version}</version> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 198 | <exclusions> |
| 199 | <exclusion> |
| 200 | <groupId>org.apache.logging.log4j</groupId> |
| 201 | <artifactId>log4j-api</artifactId> |
| 202 | </exclusion> |
| 203 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 204 | </dependency> |
| 205 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 206 | <groupId>org.apache.logging.log4j</groupId> |
| 207 | <artifactId>log4j-slf4j-impl</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 208 | <version>${log4j.version}</version> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 209 | </dependency> |
| 210 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 211 | <groupId>org.apache.logging.log4j</groupId> |
| 212 | <artifactId>log4j-jul</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 213 | <version>${log4j.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 214 | <exclusions> |
| 215 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 216 | <groupId>org.apache.logging.log4j</groupId> |
| 217 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 218 | </exclusion> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 219 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 220 | </dependency> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 221 | <dependency> |
| 222 | <groupId>org.slf4j</groupId> |
| 223 | <artifactId>slf4j-api</artifactId> |
dependabot[bot] | 54d2412 | 2021-07-20 17:01:44 +0000 | [diff] [blame] | 224 | <version>1.7.32</version> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 225 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 226 | |
| 227 | <!-- Java Assist --> |
| 228 | <dependency> |
| 229 | <groupId>org.javassist</groupId> |
| 230 | <artifactId>javassist</artifactId> |
dependabot[bot] | a9b8fc7 | 2021-05-10 05:49:00 +0000 | [diff] [blame] | 231 | <version>3.28.0-GA</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 232 | </dependency> |
| 233 | |
| 234 | <!-- EM:done --> |
| 235 | |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 236 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 237 | <groupId>junit</groupId> |
| 238 | <artifactId>junit</artifactId> |
dependabot[bot] | c5abefe | 2021-02-24 14:39:55 +0000 | [diff] [blame] | 239 | <version>4.13.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 240 | </dependency> |
| 241 | <dependency> |
| 242 | <groupId>org.projectlombok</groupId> |
| 243 | <artifactId>lombok</artifactId> |
dependabot[bot] | a0f230c | 2021-10-07 17:02:00 +0000 | [diff] [blame] | 244 | <version>1.18.22</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 245 | </dependency> |
| 246 | <dependency> |
| 247 | <groupId>joda-time</groupId> |
| 248 | <artifactId>joda-time</artifactId> |
dependabot[bot] | 2a6e034 | 2021-10-26 17:01:59 +0000 | [diff] [blame] | 249 | <version>2.10.13</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 250 | </dependency> |
| 251 | <dependency> |
| 252 | <groupId>de.ids_mannheim.korap</groupId> |
| 253 | <artifactId>Koral</artifactId> |
margaretha | a8c364b | 2021-02-19 13:00:31 +0100 | [diff] [blame] | 254 | <version>${koral.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 255 | <exclusions> |
| 256 | <exclusion> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 257 | <groupId>org.sonatype.sisu</groupId> |
| 258 | <artifactId>sisu-guava</artifactId> |
| 259 | </exclusion> |
| 260 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 261 | <groupId>org.eclipse.jetty</groupId> |
| 262 | <artifactId>jetty-servlet</artifactId> |
| 263 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 264 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 265 | <groupId>org.apache.logging.log4j</groupId> |
| 266 | <artifactId>log4j-api</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 267 | </exclusion> |
| 268 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 269 | <groupId>org.apache.logging.log4j</groupId> |
| 270 | <artifactId>log4j-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 271 | </exclusion> |
| 272 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 273 | <groupId>org.apache.logging.log4j</groupId> |
| 274 | <artifactId>log4j-slf4j-impl</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 275 | </exclusion> |
| 276 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 277 | <groupId>org.apache.logging.log4j</groupId> |
| 278 | <artifactId>log4j-jul</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 279 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 280 | </exclusions> |
| 281 | </dependency> |
| 282 | |
| 283 | <dependency> |
| 284 | <groupId>org.xerial</groupId> |
| 285 | <artifactId>sqlite-jdbc</artifactId> |
dependabot[bot] | 2b23324 | 2021-08-30 17:01:31 +0000 | [diff] [blame] | 286 | <version>3.36.0.3</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 287 | </dependency> |
| 288 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 289 | <dependency> |
| 290 | <groupId>org.apache.commons</groupId> |
| 291 | <artifactId>commons-dbcp2</artifactId> |
dependabot[bot] | 26101ec | 2021-08-04 17:01:44 +0000 | [diff] [blame] | 292 | <version>2.9.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 293 | </dependency> |
| 294 | |
| 295 | <dependency> |
| 296 | <groupId>commons-validator</groupId> |
| 297 | <artifactId>commons-validator</artifactId> |
dependabot[bot] | d9501c0 | 2020-08-10 05:37:45 +0000 | [diff] [blame] | 298 | <version>1.7</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 299 | </dependency> |
| 300 | |
| 301 | <dependency> |
| 302 | <groupId>org.mindrot</groupId> |
| 303 | <artifactId>jbcrypt</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 304 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 305 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 306 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 307 | <dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 308 | <groupId>javax.annotation</groupId> |
| 309 | <artifactId>javax.annotation-api</artifactId> |
| 310 | <version>1.3.2</version> |
| 311 | </dependency> |
| 312 | |
| 313 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 314 | <groupId>de.ids_mannheim.korap</groupId> |
| 315 | <artifactId>Krill</artifactId> |
margaretha | a8c364b | 2021-02-19 13:00:31 +0100 | [diff] [blame] | 316 | <version>${krill.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 317 | <exclusions> |
| 318 | <exclusion> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 319 | <groupId>org.glassfish.jersey.containers</groupId> |
| 320 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 321 | </exclusion> |
| 322 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 323 | <groupId>org.xerial</groupId> |
| 324 | <artifactId>sqlite-jdbc</artifactId> |
| 325 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 326 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 327 | <groupId>org.apache.logging.log4j</groupId> |
| 328 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 329 | </exclusion> |
| 330 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 331 | <groupId>org.apache.logging.log4j</groupId> |
| 332 | <artifactId>log4j-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 333 | </exclusion> |
| 334 | <exclusion> |
| 335 | <groupId>org.apache.logging.log4j</groupId> |
| 336 | <artifactId>log4j-slf4j-impl</artifactId> |
| 337 | </exclusion> |
| 338 | <exclusion> |
| 339 | <groupId>org.slf4j</groupId> |
| 340 | <artifactId>jul-to-slf4j</artifactId> |
| 341 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 342 | </exclusions> |
| 343 | </dependency> |
| 344 | <dependency> |
| 345 | <groupId>org.reflections</groupId> |
| 346 | <artifactId>reflections</artifactId> |
dependabot[bot] | 778c94d | 2021-10-25 17:01:39 +0000 | [diff] [blame] | 347 | <version>0.10.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 348 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 349 | |
| 350 | <!-- Spring --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 351 | <dependency> |
| 352 | <groupId>org.springframework</groupId> |
| 353 | <artifactId>spring-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 354 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 355 | </dependency> |
| 356 | <dependency> |
| 357 | <groupId>org.springframework</groupId> |
| 358 | <artifactId>spring-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 359 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 360 | </dependency> |
| 361 | <dependency> |
| 362 | <groupId>org.springframework</groupId> |
| 363 | <artifactId>spring-asm</artifactId> |
| 364 | <version>3.1.4.RELEASE</version> |
| 365 | </dependency> |
| 366 | <dependency> |
| 367 | <groupId>org.springframework</groupId> |
| 368 | <artifactId>spring-orm</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 369 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 370 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 371 | |
| 372 | <dependency> |
| 373 | <groupId>org.springframework</groupId> |
| 374 | <artifactId>spring-jdbc</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 375 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 376 | </dependency> |
| 377 | <dependency> |
| 378 | <groupId>org.springframework</groupId> |
| 379 | <artifactId>spring-tx</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 380 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 381 | </dependency> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 382 | <!-- <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 383 | <groupId>org.springframework.security</groupId> |
| 384 | <artifactId>spring-security-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 385 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 386 | </dependency> |
| 387 | <dependency> |
| 388 | <groupId>org.springframework.security</groupId> |
| 389 | <artifactId>spring-security-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 390 | <version>${spring.version}</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 391 | </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 392 | <!-- EM: done --> |
| 393 | <dependency> |
| 394 | <groupId>org.springframework</groupId> |
| 395 | <artifactId>spring-context</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 396 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 397 | </dependency> |
| 398 | <dependency> |
| 399 | <groupId>org.springframework</groupId> |
| 400 | <artifactId>spring-context-support</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 401 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 402 | </dependency> |
| 403 | <dependency> |
| 404 | <groupId>org.springframework</groupId> |
| 405 | <artifactId>spring-test</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 406 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 407 | <scope>compile</scope> |
| 408 | </dependency> |
| 409 | |
| 410 | <!-- apparently this order prevents the spring schemas from being overriden |
| 411 | in META-INF/spring.schemas, thus must stay like this --> |
| 412 | <dependency> |
| 413 | <groupId>org.springframework</groupId> |
| 414 | <artifactId>spring-aop</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 415 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 416 | </dependency> |
| 417 | <dependency> |
| 418 | <groupId>org.springframework</groupId> |
| 419 | <artifactId>spring-aspects</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 420 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 421 | </dependency> |
| 422 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 423 | <!-- end copy --> |
| 424 | |
| 425 | <dependency> |
| 426 | <groupId>commons-collections</groupId> |
| 427 | <artifactId>commons-collections</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 428 | <version>3.2.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 429 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 430 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 431 | <!-- jetty --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 432 | <dependency> |
| 433 | <groupId>org.eclipse.jetty</groupId> |
| 434 | <artifactId>jetty-server</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 435 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 436 | </dependency> |
| 437 | <dependency> |
| 438 | <groupId>org.eclipse.jetty</groupId> |
| 439 | <artifactId>jetty-servlet</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 440 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 441 | </dependency> |
| 442 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 443 | <groupId>org.eclipse.jetty</groupId> |
| 444 | <artifactId>jetty-webapp</artifactId> |
| 445 | <version>${jetty.version}</version> |
| 446 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 447 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 448 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 449 | <groupId>asm</groupId> |
| 450 | <artifactId>asm</artifactId> |
| 451 | <version>3.3.1</version> |
| 452 | </dependency> |
| 453 | <dependency> |
| 454 | <groupId>com.novell.ldap</groupId> |
| 455 | <artifactId>jldap</artifactId> |
| 456 | <version>4.3</version> |
| 457 | </dependency> |
| 458 | <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk --> |
| 459 | <dependency> |
| 460 | <groupId>com.unboundid</groupId> |
| 461 | <artifactId>unboundid-ldapsdk</artifactId> |
dependabot[bot] | eec9ba2 | 2021-10-05 17:01:37 +0000 | [diff] [blame] | 462 | <version>6.0.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 463 | </dependency> |
| 464 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 465 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 466 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 467 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 468 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 469 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 470 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 471 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 472 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 473 | </exclusion> </exclusions> </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 474 | <dependency> |
| 475 | <groupId>org.apache.httpcomponents</groupId> |
| 476 | <artifactId>httpclient</artifactId> |
dependabot[bot] | 0fec152 | 2020-11-09 06:19:08 +0000 | [diff] [blame] | 477 | <version>4.5.13</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 478 | </dependency> |
| 479 | <dependency> |
| 480 | <groupId>commons-io</groupId> |
| 481 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 98284a0 | 2021-07-13 17:01:39 +0000 | [diff] [blame] | 482 | <version>2.11.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 483 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 484 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 485 | <!-- Hibernate --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 486 | <dependency> |
| 487 | <groupId>org.hibernate</groupId> |
| 488 | <artifactId>hibernate-ehcache</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 489 | <version>${hibernate.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 490 | </dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 491 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 492 | <groupId>org.hibernate</groupId> |
| 493 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 494 | <version>${hibernate.version}</version> |
| 495 | <scope>provided</scope> |
| 496 | </dependency> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 497 | <dependency> |
| 498 | <groupId>com.github.gwenn</groupId> |
| 499 | <artifactId>sqlite-dialect</artifactId> |
| 500 | <version>0.1.0</version> |
| 501 | </dependency> |
| 502 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 503 | <dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 504 | <groupId>javax.servlet</groupId> |
| 505 | <artifactId>javax.servlet-api</artifactId> |
| 506 | <version>4.0.1</version> |
| 507 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 508 | </dependencies> |
Akron | 730ed08 | 2018-01-31 17:10:13 +0100 | [diff] [blame] | 509 | </project> |