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