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