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