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> |
Akron | baa0470 | 2020-09-29 18:08:09 +0200 | [diff] [blame] | 6 | <version>0.63</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] | 14736a5 | 2020-10-28 05:51:39 +0000 | [diff] [blame] | 11 | <spring.version>5.3.0</spring.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 12 | <jersey.version>1.19.4</jersey.version> |
dependabot[bot] | c85ca0a | 2020-11-09 06:19:08 +0000 | [diff] [blame] | 13 | <jetty.version>9.4.34.v20201102</jetty.version> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 14 | <hibernate.version>5.4.25.Final</hibernate.version> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 15 | <flyway.version>7.4.0</flyway.version> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 16 | <log4j.version>2.13.3</log4j.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 17 | </properties> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 18 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 19 | <build> |
| 20 | <resources> |
| 21 | <resource> |
| 22 | <directory>src/main/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 23 | </resource> |
| 24 | </resources> |
| 25 | <testResources> |
| 26 | <testResource> |
| 27 | <directory>src/test/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 28 | </testResource> |
| 29 | <testResource> |
| 30 | <directory>src/main/resources</directory> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 31 | </testResource> |
| 32 | </testResources> |
| 33 | <plugins> |
| 34 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 35 | <plugin> |
| 36 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 37 | <artifactId>maven-java-formatter-plugin</artifactId> |
Marc Kupietz | 9f1794c | 2020-03-25 08:24:57 +0100 | [diff] [blame] | 38 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 39 | <configuration> |
| 40 | <configFile>${project.basedir}/Format.xml</configFile> |
| 41 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 42 | <compilerSource>${java.version}</compilerSource> |
| 43 | <compilerCompliance>${java.version}</compilerCompliance> |
| 44 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 45 | </configuration> |
| 46 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 47 | </executions> --> |
| 48 | </plugin> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.maven.plugins</groupId> |
| 51 | <artifactId>maven-compiler-plugin</artifactId> |
dependabot[bot] | 14dc9d2 | 2020-07-16 05:44:21 +0000 | [diff] [blame] | 52 | <version>3.8.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 53 | <configuration> |
| 54 | <compilerVersion>${java.version}</compilerVersion> |
| 55 | <source>${java.version}</source> |
| 56 | <target>${java.version}</target> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 57 | <annotationProcessors> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 58 | <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 59 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
Marc Kupietz | 483db75 | 2020-03-25 08:25:35 +0100 | [diff] [blame] | 60 | </annotationProcessors> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 61 | </configuration> |
| 62 | </plugin> |
| 63 | |
| 64 | <!-- build tests jar, so extensions can use fastjerseytest class to build |
| 65 | rest tests --> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 66 | <plugin> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-jar-plugin</artifactId> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 69 | <version>3.2.0</version> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 70 | <executions> |
| 71 | <execution> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 72 | <goals> |
| 73 | <goal>test-jar</goal> |
| 74 | </goals> |
| 75 | </execution> |
| 76 | </executions> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 77 | </plugin> |
margaretha | 6f0b738 | 2018-11-21 17:42:02 +0100 | [diff] [blame] | 78 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 79 | <!-- Generate source jar --> |
| 80 | <plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 81 | <groupId>org.apache.maven.plugins</groupId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 82 | <artifactId>maven-source-plugin</artifactId> |
dependabot[bot] | 83c4bd3 | 2020-07-06 05:43:07 +0000 | [diff] [blame] | 83 | <version>3.2.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 84 | <executions> |
| 85 | <execution> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 86 | <id>attach-sources</id> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 87 | <goals> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 88 | <goal>jar</goal> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 89 | </goals> |
| 90 | </execution> |
| 91 | </executions> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 92 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 93 | </plugins> |
| 94 | </build> |
| 95 | <dependencies> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 96 | <!-- Jersey --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>com.sun.jersey</groupId> |
| 99 | <artifactId>jersey-bundle</artifactId> |
| 100 | <version>${jersey.version}</version> |
| 101 | </dependency> |
| 102 | <!--EM: added --> |
| 103 | <dependency> |
| 104 | <groupId>com.sun.jersey</groupId> |
| 105 | <artifactId>jersey-server</artifactId> |
| 106 | <version>${jersey.version}</version> |
| 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
| 110 | <groupId>com.sun.jersey.contribs</groupId> |
| 111 | <artifactId>jersey-spring</artifactId> |
| 112 | <version>${jersey.version}</version> |
| 113 | <exclusions> |
| 114 | <exclusion> |
| 115 | <groupId>org.springframework</groupId> |
| 116 | <artifactId>spring</artifactId> |
| 117 | </exclusion> |
| 118 | <exclusion> |
| 119 | <groupId>org.springframework</groupId> |
| 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> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 143 | <groupId>com.sun.jersey</groupId> |
| 144 | <artifactId>jersey-json</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> |
| 148 | <groupId>org.codehaus.jackson</groupId> |
| 149 | <artifactId>jackson-core-asl</artifactId> |
| 150 | </exclusion> |
| 151 | <exclusion> |
| 152 | <groupId>org.codehaus.jackson</groupId> |
| 153 | <artifactId>jackson-mapper-asl</artifactId> |
| 154 | </exclusion> |
| 155 | <exclusion> |
| 156 | <groupId>org.codehaus.jackson</groupId> |
| 157 | <artifactId>jackson-jaxrs</artifactId> |
| 158 | </exclusion> |
| 159 | <exclusion> |
| 160 | <groupId>org.codehaus.jackson</groupId> |
| 161 | <artifactId>jackson-xc</artifactId> |
| 162 | </exclusion> |
| 163 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 164 | </dependency> |
| 165 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 166 | <groupId>net.minidev</groupId> |
| 167 | <artifactId>json-smart</artifactId> |
dependabot[bot] | a6dec94 | 2020-07-15 06:17:48 +0000 | [diff] [blame] | 168 | <version>2.3</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 169 | </dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 170 | |
| 171 | <!-- Jersey 1x originally uses codehaus --> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 174 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
Marc Kupietz | 400e791 | 2020-11-26 08:24:05 +0100 | [diff] [blame] | 175 | <version>2.11.3</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 176 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 177 | |
| 178 | <!-- Flyway --> |
| 179 | <dependency> |
| 180 | <groupId>org.flywaydb</groupId> |
| 181 | <artifactId>flyway-core</artifactId> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 182 | <version>${flyway.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 183 | </dependency> |
| 184 | |
| 185 | <!-- Logging --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 186 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 187 | <groupId>org.apache.logging.log4j</groupId> |
| 188 | <artifactId>log4j-api</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 189 | <version>${log4j.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 190 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 191 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 192 | <groupId>org.apache.logging.log4j</groupId> |
| 193 | <artifactId>log4j-core</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 194 | <version>${log4j.version}</version> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 195 | <exclusions> |
| 196 | <exclusion> |
| 197 | <groupId>org.apache.logging.log4j</groupId> |
| 198 | <artifactId>log4j-api</artifactId> |
| 199 | </exclusion> |
| 200 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 201 | </dependency> |
| 202 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 203 | <groupId>org.apache.logging.log4j</groupId> |
| 204 | <artifactId>log4j-slf4j-impl</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 205 | <version>${log4j.version}</version> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 206 | </dependency> |
| 207 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 208 | <groupId>org.apache.logging.log4j</groupId> |
| 209 | <artifactId>log4j-jul</artifactId> |
Marc Kupietz | 99ed5b0 | 2020-07-03 09:33:34 +0200 | [diff] [blame] | 210 | <version>${log4j.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 211 | <exclusions> |
| 212 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 213 | <groupId>org.apache.logging.log4j</groupId> |
| 214 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 215 | </exclusion> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 216 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 217 | </dependency> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 218 | <dependency> |
| 219 | <groupId>org.slf4j</groupId> |
| 220 | <artifactId>slf4j-api</artifactId> |
dependabot[bot] | 01f2a2d | 2020-07-06 05:43:10 +0000 | [diff] [blame] | 221 | <version>1.7.30</version> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 222 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 223 | |
| 224 | <!-- Java Assist --> |
| 225 | <dependency> |
| 226 | <groupId>org.javassist</groupId> |
| 227 | <artifactId>javassist</artifactId> |
dependabot[bot] | bcf947c | 2020-07-06 05:43:06 +0000 | [diff] [blame] | 228 | <version>3.27.0-GA</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 229 | </dependency> |
| 230 | |
| 231 | <!-- EM:done --> |
| 232 | |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 233 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 234 | <groupId>junit</groupId> |
| 235 | <artifactId>junit</artifactId> |
dependabot[bot] | 66b6c77 | 2020-10-26 21:26:02 +0000 | [diff] [blame] | 236 | <version>4.13.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 237 | </dependency> |
| 238 | <dependency> |
| 239 | <groupId>org.projectlombok</groupId> |
| 240 | <artifactId>lombok</artifactId> |
dependabot[bot] | e55e093 | 2020-10-28 05:51:26 +0000 | [diff] [blame] | 241 | <version>1.18.16</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 242 | </dependency> |
| 243 | <dependency> |
| 244 | <groupId>joda-time</groupId> |
| 245 | <artifactId>joda-time</artifactId> |
dependabot[bot] | f632cda | 2020-10-28 05:51:53 +0000 | [diff] [blame] | 246 | <version>2.10.8</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 247 | </dependency> |
| 248 | <dependency> |
| 249 | <groupId>de.ids_mannheim.korap</groupId> |
| 250 | <artifactId>Koral</artifactId> |
Akron | bee031a | 2020-10-29 16:58:14 +0100 | [diff] [blame] | 251 | <version>[0.37,)</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 252 | <exclusions> |
| 253 | <exclusion> |
margaretha | 0ddaed6 | 2021-01-21 17:10:33 +0100 | [diff] [blame] | 254 | <groupId>org.sonatype.sisu</groupId> |
| 255 | <artifactId>sisu-guava</artifactId> |
| 256 | </exclusion> |
| 257 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 258 | <groupId>org.eclipse.jetty</groupId> |
| 259 | <artifactId>jetty-servlet</artifactId> |
| 260 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 261 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 262 | <groupId>org.apache.logging.log4j</groupId> |
| 263 | <artifactId>log4j-api</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-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 268 | </exclusion> |
| 269 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 270 | <groupId>org.apache.logging.log4j</groupId> |
| 271 | <artifactId>log4j-slf4j-impl</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 272 | </exclusion> |
| 273 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 274 | <groupId>org.apache.logging.log4j</groupId> |
| 275 | <artifactId>log4j-jul</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 276 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 277 | </exclusions> |
| 278 | </dependency> |
| 279 | |
| 280 | <dependency> |
| 281 | <groupId>org.xerial</groupId> |
| 282 | <artifactId>sqlite-jdbc</artifactId> |
dependabot[bot] | f367b72 | 2020-07-29 06:01:25 +0000 | [diff] [blame] | 283 | <version>3.32.3.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 284 | </dependency> |
| 285 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 286 | <dependency> |
| 287 | <groupId>org.apache.commons</groupId> |
| 288 | <artifactId>commons-dbcp2</artifactId> |
dependabot[bot] | dff75f1 | 2020-10-26 21:29:51 +0000 | [diff] [blame] | 289 | <version>2.8.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 290 | </dependency> |
| 291 | |
| 292 | <dependency> |
| 293 | <groupId>commons-validator</groupId> |
| 294 | <artifactId>commons-validator</artifactId> |
dependabot[bot] | d9501c0 | 2020-08-10 05:37:45 +0000 | [diff] [blame] | 295 | <version>1.7</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 296 | </dependency> |
| 297 | |
| 298 | <dependency> |
| 299 | <groupId>org.mindrot</groupId> |
| 300 | <artifactId>jbcrypt</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 301 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 302 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 303 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 304 | <dependency> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 305 | <groupId>javax.annotation</groupId> |
| 306 | <artifactId>javax.annotation-api</artifactId> |
| 307 | <version>1.3.2</version> |
| 308 | </dependency> |
| 309 | |
| 310 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 311 | <groupId>de.ids_mannheim.korap</groupId> |
| 312 | <artifactId>Krill</artifactId> |
Akron | bee031a | 2020-10-29 16:58:14 +0100 | [diff] [blame] | 313 | <version>[0.59.3,)</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 314 | <exclusions> |
| 315 | <exclusion> |
margaretha | 74a1f9e | 2019-04-25 16:11:49 +0200 | [diff] [blame] | 316 | <groupId>org.glassfish.jersey.containers</groupId> |
| 317 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 318 | </exclusion> |
| 319 | <exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 320 | <groupId>org.xerial</groupId> |
| 321 | <artifactId>sqlite-jdbc</artifactId> |
| 322 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 323 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 324 | <groupId>org.apache.logging.log4j</groupId> |
| 325 | <artifactId>log4j-api</artifactId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 326 | </exclusion> |
| 327 | <exclusion> |
margaretha | fcf8bd9 | 2021-01-14 10:55:53 +0100 | [diff] [blame] | 328 | <groupId>org.apache.logging.log4j</groupId> |
| 329 | <artifactId>log4j-core</artifactId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 330 | </exclusion> |
| 331 | <exclusion> |
| 332 | <groupId>org.apache.logging.log4j</groupId> |
| 333 | <artifactId>log4j-slf4j-impl</artifactId> |
| 334 | </exclusion> |
| 335 | <exclusion> |
| 336 | <groupId>org.slf4j</groupId> |
| 337 | <artifactId>jul-to-slf4j</artifactId> |
| 338 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 339 | </exclusions> |
| 340 | </dependency> |
| 341 | <dependency> |
| 342 | <groupId>org.reflections</groupId> |
| 343 | <artifactId>reflections</artifactId> |
dependabot[bot] | b133125 | 2020-07-15 06:17:47 +0000 | [diff] [blame] | 344 | <version>0.9.12</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 345 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 346 | |
| 347 | <!-- Spring --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 348 | <dependency> |
| 349 | <groupId>org.springframework</groupId> |
| 350 | <artifactId>spring-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 351 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 352 | </dependency> |
| 353 | <dependency> |
| 354 | <groupId>org.springframework</groupId> |
| 355 | <artifactId>spring-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 356 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 357 | </dependency> |
| 358 | <dependency> |
| 359 | <groupId>org.springframework</groupId> |
| 360 | <artifactId>spring-asm</artifactId> |
| 361 | <version>3.1.4.RELEASE</version> |
| 362 | </dependency> |
| 363 | <dependency> |
| 364 | <groupId>org.springframework</groupId> |
| 365 | <artifactId>spring-orm</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> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 368 | |
| 369 | <dependency> |
| 370 | <groupId>org.springframework</groupId> |
| 371 | <artifactId>spring-jdbc</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 372 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 373 | </dependency> |
| 374 | <dependency> |
| 375 | <groupId>org.springframework</groupId> |
| 376 | <artifactId>spring-tx</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 377 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 378 | </dependency> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 379 | <!-- <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 380 | <groupId>org.springframework.security</groupId> |
| 381 | <artifactId>spring-security-core</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.security</groupId> |
| 386 | <artifactId>spring-security-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 387 | <version>${spring.version}</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 388 | </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 389 | <!-- EM: done --> |
| 390 | <dependency> |
| 391 | <groupId>org.springframework</groupId> |
| 392 | <artifactId>spring-context</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 393 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 394 | </dependency> |
| 395 | <dependency> |
| 396 | <groupId>org.springframework</groupId> |
| 397 | <artifactId>spring-context-support</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 398 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 399 | </dependency> |
| 400 | <dependency> |
| 401 | <groupId>org.springframework</groupId> |
| 402 | <artifactId>spring-test</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 | <scope>compile</scope> |
| 405 | </dependency> |
| 406 | |
| 407 | <!-- apparently this order prevents the spring schemas from being overriden |
| 408 | in META-INF/spring.schemas, thus must stay like this --> |
| 409 | <dependency> |
| 410 | <groupId>org.springframework</groupId> |
| 411 | <artifactId>spring-aop</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 412 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 413 | </dependency> |
| 414 | <dependency> |
| 415 | <groupId>org.springframework</groupId> |
| 416 | <artifactId>spring-aspects</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 417 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 418 | </dependency> |
| 419 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 420 | <!-- end copy --> |
| 421 | |
| 422 | <dependency> |
| 423 | <groupId>commons-collections</groupId> |
| 424 | <artifactId>commons-collections</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 425 | <version>3.2.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 426 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 427 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 428 | <!-- jetty --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 429 | <dependency> |
| 430 | <groupId>org.eclipse.jetty</groupId> |
| 431 | <artifactId>jetty-server</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 432 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 433 | </dependency> |
| 434 | <dependency> |
| 435 | <groupId>org.eclipse.jetty</groupId> |
| 436 | <artifactId>jetty-servlet</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 437 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 438 | </dependency> |
| 439 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 440 | <groupId>org.eclipse.jetty</groupId> |
| 441 | <artifactId>jetty-webapp</artifactId> |
| 442 | <version>${jetty.version}</version> |
| 443 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 444 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 445 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 446 | <groupId>asm</groupId> |
| 447 | <artifactId>asm</artifactId> |
| 448 | <version>3.3.1</version> |
| 449 | </dependency> |
| 450 | <dependency> |
| 451 | <groupId>com.novell.ldap</groupId> |
| 452 | <artifactId>jldap</artifactId> |
| 453 | <version>4.3</version> |
| 454 | </dependency> |
| 455 | <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk --> |
| 456 | <dependency> |
| 457 | <groupId>com.unboundid</groupId> |
| 458 | <artifactId>unboundid-ldapsdk</artifactId> |
dependabot[bot] | 9f15c3b | 2020-08-26 05:40:46 +0000 | [diff] [blame] | 459 | <version>5.1.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 460 | </dependency> |
| 461 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 462 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 463 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 464 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 465 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 466 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 467 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 468 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 469 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 470 | </exclusion> </exclusions> </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 471 | <dependency> |
| 472 | <groupId>org.apache.httpcomponents</groupId> |
| 473 | <artifactId>httpclient</artifactId> |
dependabot[bot] | 0fec152 | 2020-11-09 06:19:08 +0000 | [diff] [blame] | 474 | <version>4.5.13</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 475 | </dependency> |
| 476 | <dependency> |
| 477 | <groupId>commons-io</groupId> |
| 478 | <artifactId>commons-io</artifactId> |
dependabot[bot] | 308b9b5 | 2020-10-26 21:31:08 +0000 | [diff] [blame] | 479 | <version>2.8.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 480 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 481 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 482 | <!-- Hibernate --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 483 | <dependency> |
| 484 | <groupId>org.hibernate</groupId> |
| 485 | <artifactId>hibernate-ehcache</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 486 | <version>${hibernate.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 487 | </dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 488 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 489 | <groupId>org.hibernate</groupId> |
| 490 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 491 | <version>${hibernate.version}</version> |
| 492 | <scope>provided</scope> |
| 493 | </dependency> |
margaretha | 77bf8b7 | 2020-12-04 13:47:48 +0100 | [diff] [blame] | 494 | <dependency> |
| 495 | <groupId>com.github.gwenn</groupId> |
| 496 | <artifactId>sqlite-dialect</artifactId> |
| 497 | <version>0.1.0</version> |
| 498 | </dependency> |
| 499 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 500 | <dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 501 | <groupId>javax.servlet</groupId> |
| 502 | <artifactId>javax.servlet-api</artifactId> |
| 503 | <version>4.0.1</version> |
| 504 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 505 | </dependencies> |
Akron | 730ed08 | 2018-01-31 17:10:13 +0100 | [diff] [blame] | 506 | </project> |