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 | 417571c | 2018-05-09 22:55:06 +0200 | [diff] [blame] | 6 | <version>0.60.3</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 | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 11 | <spring-framework.version>5.0.3.RELEASE</spring-framework.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 12 | <jersey.version>1.19.4</jersey.version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 13 | <jetty.version>9.4.8.v20171121</jetty.version> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 14 | <hibernate.version>5.1.11.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> |
| 20 | <filtering>true</filtering> |
| 21 | <includes> |
| 22 | <include>**/*.info</include> |
| 23 | <include>**/*.xml</include> |
| 24 | <include>**/*.conf</include> |
| 25 | <include>**/*.kustvakt</include> |
| 26 | <include>**/*.properties</include> |
| 27 | <include>**/*.sql</include> |
| 28 | </includes> |
| 29 | </resource> |
| 30 | </resources> |
| 31 | <testResources> |
| 32 | <testResource> |
| 33 | <directory>src/test/resources</directory> |
| 34 | <filtering>true</filtering> |
| 35 | <includes> |
| 36 | <include>**/*.prop</include> |
| 37 | <include>**/*.xml</include> |
| 38 | <include>**/*.conf</include> |
| 39 | <include>**/*.info</include> |
| 40 | <include>**/*.properties</include> |
| 41 | </includes> |
| 42 | </testResource> |
| 43 | <testResource> |
| 44 | <directory>src/main/resources</directory> |
| 45 | <filtering>true</filtering> |
| 46 | <includes> |
| 47 | <include>**/*.info</include> |
| 48 | <include>**/*.properties</include> |
| 49 | </includes> |
| 50 | </testResource> |
| 51 | </testResources> |
| 52 | <plugins> |
| 53 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 54 | <plugin> |
| 55 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 56 | <artifactId>maven-java-formatter-plugin</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 57 | <version>${project.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 58 | <configuration> |
| 59 | <configFile>${project.basedir}/Format.xml</configFile> |
| 60 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 61 | <compilerSource>${java.version}</compilerSource> |
| 62 | <compilerCompliance>${java.version}</compilerCompliance> |
| 63 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 64 | </configuration> |
| 65 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 66 | </executions> --> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-compiler-plugin</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 71 | <version>3.7.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 72 | <configuration> |
| 73 | <compilerVersion>${java.version}</compilerVersion> |
| 74 | <source>${java.version}</source> |
| 75 | <target>${java.version}</target> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | |
| 79 | <!-- build tests jar, so extensions can use fastjerseytest class to build |
| 80 | rest tests --> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 81 | <!-- <plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 82 | <groupId>org.apache.maven.plugins</groupId> |
| 83 | <artifactId>maven-jar-plugin</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 84 | <version>3.0.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 85 | <executions> |
| 86 | <execution> |
| 87 | <phase>package</phase> |
| 88 | <goals> |
| 89 | <goal>test-jar</goal> |
| 90 | </goals> |
| 91 | </execution> |
| 92 | </executions> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 93 | </plugin> --> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 94 | <!-- Generate source jar --> |
| 95 | <plugin> |
| 96 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | <artifactId>maven-source-plugin</artifactId> |
margaretha | fc7d777 | 2018-01-16 17:48:17 +0100 | [diff] [blame] | 98 | <version>3.0.1</version> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 99 | <executions> |
| 100 | <execution> |
| 101 | <id>attach-sources</id> |
| 102 | <goals> |
| 103 | <goal>jar</goal> |
| 104 | </goals> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
margaretha | efc18a4 | 2018-03-01 16:01:42 +0100 | [diff] [blame] | 108 | <!-- <plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-surefire-plugin</artifactId> |
margaretha | a86b141 | 2018-02-21 20:40:35 +0100 | [diff] [blame] | 111 | <version>2.20.1</version> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 112 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 113 | <configuration> |
| 114 | <reuseForks>false</reuseForks> |
| 115 | <forkCount>2</forkCount> |
| 116 | <threadCount>10</threadCount> |
| 117 | <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> |
| 118 | |
| 119 | <excludes> |
| 120 | <exclude>**/*APITest.java</exclude> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 121 | </excludes> |
| 122 | <includes> |
| 123 | <include>de/ids_mannheim/korap/**/*.java</include> |
| 124 | </includes> |
| 125 | </configuration> |
margaretha | efc18a4 | 2018-03-01 16:01:42 +0100 | [diff] [blame] | 126 | </plugin> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 127 | </plugins> |
| 128 | </build> |
| 129 | <dependencies> |
| 130 | <dependency> |
| 131 | <groupId>com.sun.jersey</groupId> |
| 132 | <artifactId>jersey-bundle</artifactId> |
| 133 | <version>${jersey.version}</version> |
| 134 | </dependency> |
| 135 | <!--EM: added --> |
| 136 | <dependency> |
| 137 | <groupId>com.sun.jersey</groupId> |
| 138 | <artifactId>jersey-server</artifactId> |
| 139 | <version>${jersey.version}</version> |
| 140 | </dependency> |
| 141 | |
| 142 | <dependency> |
| 143 | <groupId>com.sun.jersey.contribs</groupId> |
| 144 | <artifactId>jersey-spring</artifactId> |
| 145 | <version>${jersey.version}</version> |
| 146 | <exclusions> |
| 147 | <exclusion> |
| 148 | <groupId>org.springframework</groupId> |
| 149 | <artifactId>spring</artifactId> |
| 150 | </exclusion> |
| 151 | <exclusion> |
| 152 | <groupId>org.springframework</groupId> |
| 153 | <artifactId>spring-core</artifactId> |
| 154 | </exclusion> |
| 155 | <exclusion> |
| 156 | <groupId>org.springframework</groupId> |
| 157 | <artifactId>spring-web</artifactId> |
| 158 | </exclusion> |
| 159 | <exclusion> |
| 160 | <groupId>org.springframework</groupId> |
| 161 | <artifactId>spring-beans</artifactId> |
| 162 | </exclusion> |
| 163 | <exclusion> |
| 164 | <groupId>org.springframework</groupId> |
| 165 | <artifactId>spring-context</artifactId> |
| 166 | </exclusion> |
| 167 | <exclusion> |
| 168 | <groupId>org.springframework</groupId> |
| 169 | <artifactId>spring-aop</artifactId> |
| 170 | </exclusion> |
| 171 | </exclusions> |
| 172 | </dependency> |
| 173 | <!-- EM:done --> |
| 174 | <dependency> |
| 175 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 176 | <artifactId>jersey-test-framework-core</artifactId> |
| 177 | <version>${jersey.version}</version> |
| 178 | <scope>test</scope> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 182 | <artifactId>jersey-test-framework-grizzly</artifactId> |
| 183 | <version>${jersey.version}</version> |
| 184 | <scope>test</scope> |
| 185 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 186 | <dependency> |
| 187 | <groupId>org.slf4j</groupId> |
| 188 | <artifactId>slf4j-log4j12</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 189 | <version>1.7.25</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 190 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 191 | <dependency> |
| 192 | <groupId>junit</groupId> |
| 193 | <artifactId>junit</artifactId> |
| 194 | <version>4.12</version> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.projectlombok</groupId> |
| 198 | <artifactId>lombok</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 199 | <version>1.16.20</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 200 | </dependency> |
| 201 | <dependency> |
| 202 | <groupId>joda-time</groupId> |
| 203 | <artifactId>joda-time</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 204 | <version>2.9.9</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>de.ids_mannheim.korap</groupId> |
| 208 | <artifactId>Koral</artifactId> |
margaretha | c6eafad | 2017-11-17 14:49:50 +0100 | [diff] [blame] | 209 | <version>0.28</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 210 | <exclusions> |
| 211 | <exclusion> |
| 212 | <groupId>org.eclipse.jetty</groupId> |
| 213 | <artifactId>jetty-servlet</artifactId> |
| 214 | </exclusion> |
| 215 | </exclusions> |
| 216 | </dependency> |
| 217 | |
| 218 | <dependency> |
| 219 | <groupId>org.xerial</groupId> |
| 220 | <artifactId>sqlite-jdbc</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 221 | <version>3.21.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 222 | </dependency> |
| 223 | |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 224 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 225 | |
| 226 | <dependency> |
| 227 | <groupId>org.apache.commons</groupId> |
| 228 | <artifactId>commons-dbcp2</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 229 | <version>2.2.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 230 | </dependency> |
| 231 | |
| 232 | <dependency> |
| 233 | <groupId>commons-validator</groupId> |
| 234 | <artifactId>commons-validator</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 235 | <version>1.6</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 236 | </dependency> |
| 237 | |
| 238 | <dependency> |
| 239 | <groupId>org.mindrot</groupId> |
| 240 | <artifactId>jbcrypt</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 241 | <version>0.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 242 | </dependency> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 243 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 244 | <dependency> |
| 245 | <groupId>de.ids_mannheim.korap</groupId> |
| 246 | <artifactId>Krill</artifactId> |
margaretha | cf306d3 | 2018-05-30 19:45:35 +0200 | [diff] [blame] | 247 | <version>0.57.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 248 | <exclusions> |
| 249 | <exclusion> |
| 250 | <groupId>org.xerial</groupId> |
| 251 | <artifactId>sqlite-jdbc</artifactId> |
| 252 | </exclusion> |
| 253 | </exclusions> |
| 254 | </dependency> |
| 255 | <dependency> |
| 256 | <groupId>org.reflections</groupId> |
| 257 | <artifactId>reflections</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 258 | <version>0.9.10</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 259 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 260 | <dependency> |
| 261 | <groupId>org.springframework</groupId> |
| 262 | <artifactId>spring-core</artifactId> |
| 263 | <version>${spring-framework.version}</version> |
| 264 | </dependency> |
| 265 | <dependency> |
| 266 | <groupId>org.springframework</groupId> |
| 267 | <artifactId>spring-web</artifactId> |
| 268 | <version>${spring-framework.version}</version> |
| 269 | </dependency> |
| 270 | <dependency> |
| 271 | <groupId>org.springframework</groupId> |
| 272 | <artifactId>spring-asm</artifactId> |
| 273 | <version>3.1.4.RELEASE</version> |
| 274 | </dependency> |
| 275 | <dependency> |
| 276 | <groupId>org.springframework</groupId> |
| 277 | <artifactId>spring-orm</artifactId> |
| 278 | <version>${spring-framework.version}</version> |
| 279 | </dependency> |
| 280 | <!-- EM: done --> |
| 281 | <dependency> |
| 282 | <groupId>org.springframework</groupId> |
| 283 | <artifactId>spring-context</artifactId> |
| 284 | <version>${spring-framework.version}</version> |
| 285 | </dependency> |
| 286 | <dependency> |
| 287 | <groupId>org.springframework</groupId> |
| 288 | <artifactId>spring-context-support</artifactId> |
| 289 | <version>${spring-framework.version}</version> |
| 290 | </dependency> |
| 291 | <dependency> |
| 292 | <groupId>org.springframework</groupId> |
| 293 | <artifactId>spring-test</artifactId> |
| 294 | <version>${spring-framework.version}</version> |
| 295 | <scope>compile</scope> |
| 296 | </dependency> |
| 297 | |
| 298 | <!-- apparently this order prevents the spring schemas from being overriden |
| 299 | in META-INF/spring.schemas, thus must stay like this --> |
| 300 | <dependency> |
| 301 | <groupId>org.springframework</groupId> |
| 302 | <artifactId>spring-aop</artifactId> |
| 303 | <version>${spring-framework.version}</version> |
| 304 | </dependency> |
| 305 | <dependency> |
| 306 | <groupId>org.springframework</groupId> |
| 307 | <artifactId>spring-aspects</artifactId> |
| 308 | <version>${spring-framework.version}</version> |
| 309 | </dependency> |
| 310 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 311 | <!-- <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache-core</artifactId> |
| 312 | <version>2.6.5</version> </dependency> --> |
| 313 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 314 | <!-- end copy --> |
| 315 | |
| 316 | <dependency> |
| 317 | <groupId>commons-collections</groupId> |
| 318 | <artifactId>commons-collections</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 319 | <version>3.2.2</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 320 | </dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 321 | |
| 322 | <!-- jetty --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 323 | <dependency> |
| 324 | <groupId>org.eclipse.jetty</groupId> |
| 325 | <artifactId>jetty-server</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 326 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 327 | </dependency> |
| 328 | <dependency> |
| 329 | <groupId>org.eclipse.jetty</groupId> |
| 330 | <artifactId>jetty-servlet</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 331 | <version>${jetty.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 332 | </dependency> |
| 333 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 334 | <groupId>org.eclipse.jetty</groupId> |
| 335 | <artifactId>jetty-webapp</artifactId> |
| 336 | <version>${jetty.version}</version> |
| 337 | </dependency> |
| 338 | |
| 339 | <dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 340 | <groupId>asm</groupId> |
| 341 | <artifactId>asm</artifactId> |
| 342 | <version>3.3.1</version> |
| 343 | </dependency> |
| 344 | <dependency> |
| 345 | <groupId>com.novell.ldap</groupId> |
| 346 | <artifactId>jldap</artifactId> |
| 347 | <version>4.3</version> |
| 348 | </dependency> |
| 349 | <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk --> |
| 350 | <dependency> |
| 351 | <groupId>com.unboundid</groupId> |
| 352 | <artifactId>unboundid-ldapsdk</artifactId> |
| 353 | <version>3.2.1</version> |
| 354 | </dependency> |
| 355 | |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 356 | <!-- not part of public release |
| 357 | <dependency> |
| 358 | <groupId>KorAP-graphDB</groupId> |
| 359 | <artifactId>KorAP-graphDB</artifactId> |
| 360 | <version>1.0-SNAPSHOT</version> |
| 361 | <exclusions> |
| 362 | <exclusion> |
| 363 | <groupId>org.antlr</groupId> |
| 364 | <artifactId>antlr4-runtime</artifactId> |
| 365 | </exclusion> |
| 366 | <exclusion> |
| 367 | <groupId>org.glassfish.jersey.core</groupId> |
| 368 | <artifactId>jersey-client</artifactId> |
| 369 | </exclusion> |
| 370 | <exclusion> |
| 371 | <groupId>org.glassfish.jersey.containers</groupId> |
| 372 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 373 | </exclusion> |
| 374 | <exclusion> |
| 375 | <groupId>org.glassfish.jersey.core</groupId> |
| 376 | <artifactId>jersey-common</artifactId> |
| 377 | </exclusion> |
| 378 | <exclusion> |
| 379 | <groupId>org.glassfish.jersey.core</groupId> |
| 380 | <artifactId>jersey-server</artifactId> |
| 381 | </exclusion> |
| 382 | </exclusions> |
| 383 | </dependency> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 384 | <dependency> |
| 385 | <groupId>org.apache.httpcomponents</groupId> |
| 386 | <artifactId>httpclient</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 387 | <version>4.5.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 388 | </dependency> |
| 389 | <dependency> |
| 390 | <groupId>commons-io</groupId> |
| 391 | <artifactId>commons-io</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 392 | <version>2.6</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 393 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 394 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 395 | <dependency> |
| 396 | <groupId>org.hibernate</groupId> |
| 397 | <artifactId>hibernate-ehcache</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 398 | <version>${hibernate.version}</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 399 | </dependency> |
| 400 | </dependencies> |
| 401 | |
| 402 | |
Akron | 730ed08 | 2018-01-31 17:10:13 +0100 | [diff] [blame] | 403 | </project> |