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 | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 6 | <version>0.61.5</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 | 3da7cd3 | 2018-10-22 17:42:52 +0200 | [diff] [blame] | 13 | <jetty.version>9.4.12.v20180830</jetty.version> |
| 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> |
| 91 | <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> |
| 92 | <version>2.20.1</version> <configuration> <reuseForks>false</reuseForks> |
| 93 | <forkCount>2</forkCount> <threadCount>10</threadCount> <argLine>-Xmx1024m |
| 94 | -XX:MaxPermSize=256m</argLine> <excludes> <exclude>**/*APITest.java</exclude> |
| 95 | </excludes> <includes> <include>de/ids_mannheim/korap/**/*.java</include> |
| 96 | </includes> </configuration> </plugin> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 97 | </plugins> |
| 98 | </build> |
| 99 | <dependencies> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 100 | <!-- Jersey --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 101 | <dependency> |
| 102 | <groupId>com.sun.jersey</groupId> |
| 103 | <artifactId>jersey-bundle</artifactId> |
| 104 | <version>${jersey.version}</version> |
| 105 | </dependency> |
| 106 | <!--EM: added --> |
| 107 | <dependency> |
| 108 | <groupId>com.sun.jersey</groupId> |
| 109 | <artifactId>jersey-server</artifactId> |
| 110 | <version>${jersey.version}</version> |
| 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
| 114 | <groupId>com.sun.jersey.contribs</groupId> |
| 115 | <artifactId>jersey-spring</artifactId> |
| 116 | <version>${jersey.version}</version> |
| 117 | <exclusions> |
| 118 | <exclusion> |
| 119 | <groupId>org.springframework</groupId> |
| 120 | <artifactId>spring</artifactId> |
| 121 | </exclusion> |
| 122 | <exclusion> |
| 123 | <groupId>org.springframework</groupId> |
| 124 | <artifactId>spring-core</artifactId> |
| 125 | </exclusion> |
| 126 | <exclusion> |
| 127 | <groupId>org.springframework</groupId> |
| 128 | <artifactId>spring-web</artifactId> |
| 129 | </exclusion> |
| 130 | <exclusion> |
| 131 | <groupId>org.springframework</groupId> |
| 132 | <artifactId>spring-beans</artifactId> |
| 133 | </exclusion> |
| 134 | <exclusion> |
| 135 | <groupId>org.springframework</groupId> |
| 136 | <artifactId>spring-context</artifactId> |
| 137 | </exclusion> |
| 138 | <exclusion> |
| 139 | <groupId>org.springframework</groupId> |
| 140 | <artifactId>spring-aop</artifactId> |
| 141 | </exclusion> |
| 142 | </exclusions> |
| 143 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 144 | |
| 145 | <!-- JSON --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 146 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 147 | <groupId>com.sun.jersey</groupId> |
| 148 | <artifactId>jersey-json</artifactId> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 149 | <version>${jersey.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 150 | </dependency> |
| 151 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 152 | <groupId>net.minidev</groupId> |
| 153 | <artifactId>json-smart</artifactId> |
| 154 | <version>1.0.9</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 155 | </dependency> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 156 | <!-- JSON support in Jersey --> |
| 157 | <dependency> |
| 158 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 159 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 160 | <version>[2.9.5,)</version> |
| 161 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 162 | |
| 163 | <!-- Flyway --> |
| 164 | <dependency> |
| 165 | <groupId>org.flywaydb</groupId> |
| 166 | <artifactId>flyway-core</artifactId> |
| 167 | <version>4.0</version> |
| 168 | </dependency> |
| 169 | |
| 170 | <!-- Logging --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 171 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 172 | <groupId>org.apache.logging.log4j</groupId> |
| 173 | <artifactId>log4j-api</artifactId> |
| 174 | <version>2.11.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 175 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 176 | <dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 177 | <groupId>org.apache.logging.log4j</groupId> |
| 178 | <artifactId>log4j-core</artifactId> |
| 179 | <version>2.11.0</version> |
| 180 | </dependency> |
| 181 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 182 | <groupId>org.apache.logging.log4j</groupId> |
| 183 | <artifactId>log4j-slf4j-impl</artifactId> |
| 184 | <version>2.11.0</version> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 185 | </dependency> |
| 186 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 187 | <groupId>org.apache.logging.log4j</groupId> |
| 188 | <artifactId>log4j-jul</artifactId> |
| 189 | <version>2.11.0</version> |
| 190 | <exclusions> |
| 191 | <exclusion> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 192 | <groupId>org.slf4j</groupId> |
| 193 | <artifactId>slf4j-api</artifactId> |
| 194 | </exclusion> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 195 | </exclusions> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 196 | </dependency> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 197 | <dependency> |
| 198 | <groupId>org.slf4j</groupId> |
| 199 | <artifactId>slf4j-api</artifactId> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 200 | <version>1.7.25</version> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 201 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 202 | |
| 203 | <!-- Java Assist --> |
| 204 | <dependency> |
| 205 | <groupId>org.javassist</groupId> |
| 206 | <artifactId>javassist</artifactId> |
| 207 | <version>3.22.0-GA</version> |
| 208 | </dependency> |
| 209 | |
| 210 | <!-- EM:done --> |
| 211 | |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 212 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 213 | <groupId>junit</groupId> |
| 214 | <artifactId>junit</artifactId> |
| 215 | <version>4.12</version> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>org.projectlombok</groupId> |
| 219 | <artifactId>lombok</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 220 | <version>1.16.20</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>joda-time</groupId> |
| 224 | <artifactId>joda-time</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 225 | <version>2.9.9</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>de.ids_mannheim.korap</groupId> |
| 229 | <artifactId>Koral</artifactId> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 230 | <version>[0.31,)</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 231 | <exclusions> |
| 232 | <exclusion> |
| 233 | <groupId>org.eclipse.jetty</groupId> |
| 234 | <artifactId>jetty-servlet</artifactId> |
| 235 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 236 | <exclusion> |
| 237 | <groupId>org.slf4j</groupId> |
| 238 | <artifactId>slf4j-api</artifactId> |
| 239 | </exclusion> |
| 240 | <exclusion> |
| 241 | <groupId>org.slf4j</groupId> |
| 242 | <artifactId>slf4j-log4j12</artifactId> |
| 243 | </exclusion> |
| 244 | <exclusion> |
| 245 | <groupId>log4j</groupId> |
| 246 | <artifactId>log4j</artifactId> |
| 247 | </exclusion> |
| 248 | <exclusion> |
| 249 | <groupId>log4j</groupId> |
| 250 | <artifactId>apache-log4j-extras</artifactId> |
| 251 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 252 | </exclusions> |
| 253 | </dependency> |
| 254 | |
| 255 | <dependency> |
| 256 | <groupId>org.xerial</groupId> |
| 257 | <artifactId>sqlite-jdbc</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 258 | <version>3.21.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 259 | </dependency> |
| 260 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 261 | <dependency> |
| 262 | <groupId>org.apache.commons</groupId> |
| 263 | <artifactId>commons-dbcp2</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 264 | <version>2.2.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 265 | </dependency> |
| 266 | |
| 267 | <dependency> |
| 268 | <groupId>commons-validator</groupId> |
| 269 | <artifactId>commons-validator</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 270 | <version>1.6</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 271 | </dependency> |
| 272 | |
| 273 | <dependency> |
| 274 | <groupId>org.mindrot</groupId> |
| 275 | <artifactId>jbcrypt</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 276 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 277 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 278 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 279 | <dependency> |
| 280 | <groupId>de.ids_mannheim.korap</groupId> |
| 281 | <artifactId>Krill</artifactId> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 282 | <version>[0.58.1,)</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 283 | <exclusions> |
| 284 | <exclusion> |
| 285 | <groupId>org.xerial</groupId> |
| 286 | <artifactId>sqlite-jdbc</artifactId> |
| 287 | </exclusion> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 288 | <exclusion> |
| 289 | <groupId>org.slf4j</groupId> |
margaretha | 6ad08b4 | 2018-08-22 18:33:54 +0200 | [diff] [blame] | 290 | <artifactId>slf4j-api</artifactId> |
| 291 | </exclusion> |
| 292 | <exclusion> |
| 293 | <groupId>org.slf4j</groupId> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 294 | <artifactId>slf4j-log4j12</artifactId> |
| 295 | </exclusion> |
| 296 | <exclusion> |
| 297 | <groupId>org.apache.logging.log4j</groupId> |
| 298 | <artifactId>log4j-slf4j-impl</artifactId> |
| 299 | </exclusion> |
| 300 | <exclusion> |
| 301 | <groupId>org.slf4j</groupId> |
| 302 | <artifactId>jul-to-slf4j</artifactId> |
| 303 | </exclusion> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 304 | </exclusions> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>org.reflections</groupId> |
| 308 | <artifactId>reflections</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 309 | <version>0.9.10</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 310 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 311 | |
| 312 | <!-- Spring --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 313 | <dependency> |
| 314 | <groupId>org.springframework</groupId> |
| 315 | <artifactId>spring-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 316 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 317 | </dependency> |
| 318 | <dependency> |
| 319 | <groupId>org.springframework</groupId> |
| 320 | <artifactId>spring-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 321 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 322 | </dependency> |
| 323 | <dependency> |
| 324 | <groupId>org.springframework</groupId> |
| 325 | <artifactId>spring-asm</artifactId> |
| 326 | <version>3.1.4.RELEASE</version> |
| 327 | </dependency> |
| 328 | <dependency> |
| 329 | <groupId>org.springframework</groupId> |
| 330 | <artifactId>spring-orm</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 331 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 332 | </dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 333 | |
| 334 | <dependency> |
| 335 | <groupId>org.springframework</groupId> |
| 336 | <artifactId>spring-jdbc</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 337 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 338 | </dependency> |
| 339 | <dependency> |
| 340 | <groupId>org.springframework</groupId> |
| 341 | <artifactId>spring-tx</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 342 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 343 | </dependency> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 344 | <!-- <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 345 | <groupId>org.springframework.security</groupId> |
| 346 | <artifactId>spring-security-core</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 347 | <version>${spring.version}</version> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 348 | </dependency> |
| 349 | <dependency> |
| 350 | <groupId>org.springframework.security</groupId> |
| 351 | <artifactId>spring-security-web</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 352 | <version>${spring.version}</version> |
margaretha | 398f472 | 2019-01-09 19:07:20 +0100 | [diff] [blame] | 353 | </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 354 | <!-- EM: done --> |
| 355 | <dependency> |
| 356 | <groupId>org.springframework</groupId> |
| 357 | <artifactId>spring-context</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 358 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 359 | </dependency> |
| 360 | <dependency> |
| 361 | <groupId>org.springframework</groupId> |
| 362 | <artifactId>spring-context-support</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 363 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 364 | </dependency> |
| 365 | <dependency> |
| 366 | <groupId>org.springframework</groupId> |
| 367 | <artifactId>spring-test</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 368 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 369 | <scope>compile</scope> |
| 370 | </dependency> |
| 371 | |
| 372 | <!-- apparently this order prevents the spring schemas from being overriden |
| 373 | in META-INF/spring.schemas, thus must stay like this --> |
| 374 | <dependency> |
| 375 | <groupId>org.springframework</groupId> |
| 376 | <artifactId>spring-aop</artifactId> |
margaretha | 0b90391 | 2019-01-08 17:41:39 +0100 | [diff] [blame] | 377 | <version>${spring.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 378 | </dependency> |
| 379 | <dependency> |
| 380 | <groupId>org.springframework</groupId> |
| 381 | <artifactId>spring-aspects</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 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 385 | <!-- end copy --> |
| 386 | |
| 387 | <dependency> |
| 388 | <groupId>commons-collections</groupId> |
| 389 | <artifactId>commons-collections</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 390 | <version>3.2.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 391 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 392 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 393 | <!-- jetty --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 394 | <dependency> |
| 395 | <groupId>org.eclipse.jetty</groupId> |
| 396 | <artifactId>jetty-server</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 397 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 398 | </dependency> |
| 399 | <dependency> |
| 400 | <groupId>org.eclipse.jetty</groupId> |
| 401 | <artifactId>jetty-servlet</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 402 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 403 | </dependency> |
| 404 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 405 | <groupId>org.eclipse.jetty</groupId> |
| 406 | <artifactId>jetty-webapp</artifactId> |
| 407 | <version>${jetty.version}</version> |
| 408 | </dependency> |
margaretha | 49cb688 | 2018-07-04 04:19:54 +0200 | [diff] [blame] | 409 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 410 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 411 | <groupId>asm</groupId> |
| 412 | <artifactId>asm</artifactId> |
| 413 | <version>3.3.1</version> |
| 414 | </dependency> |
| 415 | <dependency> |
| 416 | <groupId>com.novell.ldap</groupId> |
| 417 | <artifactId>jldap</artifactId> |
| 418 | <version>4.3</version> |
| 419 | </dependency> |
| 420 | <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk --> |
| 421 | <dependency> |
| 422 | <groupId>com.unboundid</groupId> |
| 423 | <artifactId>unboundid-ldapsdk</artifactId> |
| 424 | <version>3.2.1</version> |
| 425 | </dependency> |
| 426 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 427 | <!-- not part of public release <dependency> <groupId>KorAP-graphDB</groupId> |
| 428 | <artifactId>KorAP-graphDB</artifactId> <version>1.0-SNAPSHOT</version> <exclusions> |
| 429 | <exclusion> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> |
| 430 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> |
| 431 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.containers</groupId> |
| 432 | <artifactId>jersey-container-grizzly2-http</artifactId> </exclusion> <exclusion> |
| 433 | <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> |
| 434 | </exclusion> <exclusion> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> |
| 435 | </exclusion> </exclusions> </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 436 | <dependency> |
| 437 | <groupId>org.apache.httpcomponents</groupId> |
| 438 | <artifactId>httpclient</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 439 | <version>4.5.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 440 | </dependency> |
| 441 | <dependency> |
| 442 | <groupId>commons-io</groupId> |
| 443 | <artifactId>commons-io</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 444 | <version>2.6</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 445 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 446 | |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 447 | <!-- Hibernate --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 448 | <dependency> |
| 449 | <groupId>org.hibernate</groupId> |
| 450 | <artifactId>hibernate-ehcache</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 451 | <version>${hibernate.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 452 | </dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 453 | <dependency> |
margaretha | 2df0660 | 2018-11-14 19:10:30 +0100 | [diff] [blame] | 454 | <groupId>org.hibernate</groupId> |
| 455 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 456 | <version>${hibernate.version}</version> |
| 457 | <scope>provided</scope> |
| 458 | </dependency> |
| 459 | |
| 460 | <dependency> |
margaretha | 439ad57 | 2018-10-29 12:15:28 +0100 | [diff] [blame] | 461 | <groupId>javax.servlet</groupId> |
| 462 | <artifactId>javax.servlet-api</artifactId> |
| 463 | <version>4.0.1</version> |
| 464 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 465 | </dependencies> |
Akron | 730ed08 | 2018-01-31 17:10:13 +0100 | [diff] [blame] | 466 | </project> |