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