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