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