| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
|  | 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
|  | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 5 | <groupId>de.ids_mannheim.korap</groupId> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 6 | <artifactId>Kustvakt-core</artifactId> | 
| Akron | 78e2d20 | 2016-10-13 14:17:11 +0200 | [diff] [blame] | 7 | <version>0.59.7</version> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 8 | <packaging>jar</packaging> | 
|  | 9 | <name>Kustvakt core</name> | 
|  | 10 | <description>Kustvakt core, basic rest api for testing purposes and default | 
|  | 11 | interfaces | 
|  | 12 | </description> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 13 | <properties> | 
|  | 14 | <maven.compiler.source>1.7</maven.compiler.source> | 
|  | 15 | <maven.compiler.target>1.7</maven.compiler.target> | 
|  | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
|  | 17 | </properties> | 
| Michael Hanl | 840878a | 2015-09-21 22:38:05 +0200 | [diff] [blame] | 18 | <profiles> | 
|  | 19 | <!-- mvn -Plight builds additionally the light server version with reduced functionality! --> | 
|  | 20 | <profile> | 
|  | 21 | <id>light</id> | 
|  | 22 | <build> | 
|  | 23 | <plugins> | 
|  | 24 | <plugin> | 
|  | 25 | <artifactId>maven-shade-plugin</artifactId> | 
|  | 26 | <version>2.1</version> | 
|  | 27 | <executions> | 
|  | 28 | <!-- option 1 --> | 
|  | 29 | <execution> | 
|  | 30 | <id>light</id> | 
|  | 31 | <phase>package</phase> | 
|  | 32 | <goals> | 
|  | 33 | <goal>shade</goal> | 
|  | 34 | </goals> | 
|  | 35 | <configuration> | 
|  | 36 | <finalName> | 
|  | 37 | Kustvakt-core-${project.version}-light | 
|  | 38 | </finalName> | 
|  | 39 | <transformers> | 
|  | 40 | <transformer | 
|  | 41 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
|  | 42 | <mainClass> | 
| Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 43 | de.ids_mannheim.korap.web.KustvaktBaseServer | 
| Michael Hanl | 840878a | 2015-09-21 22:38:05 +0200 | [diff] [blame] | 44 | </mainClass> | 
|  | 45 | </transformer> | 
|  | 46 | <transformer | 
|  | 47 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
|  | 48 | <resource>META-INF/spring.handlers | 
|  | 49 | </resource> | 
|  | 50 | </transformer> | 
|  | 51 | <transformer | 
|  | 52 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
|  | 53 | <resource>META-INF/spring.schemas | 
|  | 54 | </resource> | 
|  | 55 | </transformer> | 
|  | 56 | </transformers> | 
|  | 57 | <!-- Additional configuration. --> | 
|  | 58 | <!-- apparently there is a securityexception --> | 
|  | 59 | <filters> | 
|  | 60 | <filter> | 
|  | 61 | <artifact>*:*</artifact> | 
|  | 62 | <excludes> | 
|  | 63 | <exclude>META-INF/*.SF</exclude> | 
|  | 64 | <exclude>META-INF/*.DSA | 
|  | 65 | </exclude> | 
|  | 66 | <exclude>META-INF/*.RSA | 
|  | 67 | </exclude> | 
|  | 68 | </excludes> | 
|  | 69 | </filter> | 
|  | 70 | </filters> | 
|  | 71 | </configuration> | 
|  | 72 | </execution> | 
|  | 73 | </executions> | 
|  | 74 | </plugin> | 
|  | 75 | </plugins> | 
|  | 76 | </build> | 
|  | 77 | </profile> | 
|  | 78 | </profiles> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 79 | <build> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 80 | <resources> | 
|  | 81 | <resource> | 
|  | 82 | <directory>src/main/resources</directory> | 
|  | 83 | <filtering>true</filtering> | 
|  | 84 | <includes> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 85 | <include>**/*.info</include> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 86 | <include>**/*.xml</include> | 
|  | 87 | <include>**/*.conf</include> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 88 | <include>**/*.kustvakt</include> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 89 | <include>**/*.properties</include> | 
| Michael Hanl | d3c8bc8 | 2015-11-10 07:47:24 +0100 | [diff] [blame] | 90 | <include>**/*.sql</include> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 91 | </includes> | 
|  | 92 | </resource> | 
|  | 93 | </resources> | 
|  | 94 | <testResources> | 
|  | 95 | <testResource> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 96 | <directory>src/test/resources</directory> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 97 | <filtering>true</filtering> | 
|  | 98 | <includes> | 
|  | 99 | <include>**/*.prop</include> | 
|  | 100 | <include>**/*.xml</include> | 
|  | 101 | <include>**/*.conf</include> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 102 | <include>**/*.info</include> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 103 | <include>**/*.properties</include> | 
|  | 104 | </includes> | 
|  | 105 | </testResource> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 106 | <testResource> | 
|  | 107 | <directory>src/main/resources</directory> | 
|  | 108 | <filtering>true</filtering> | 
|  | 109 | <includes> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 110 | <include>**/*.info</include> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 111 | <include>**/*.properties</include> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 112 | </includes> | 
|  | 113 | </testResource> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 114 | </testResources> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 115 | <plugins> | 
| Michael Hanl | 8abaf9e | 2016-05-23 16:46:35 +0200 | [diff] [blame] | 116 | <!-- | 
|  | 117 | Formatter plugin for Eclipse based coding conventions | 
|  | 118 | http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html | 
|  | 119 | --> | 
|  | 120 | <plugin> | 
|  | 121 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> | 
|  | 122 | <artifactId>maven-java-formatter-plugin</artifactId> | 
|  | 123 | <version>0.4</version> | 
|  | 124 | <configuration> | 
|  | 125 | <configFile>${project.basedir}/Format.xml</configFile> | 
|  | 126 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> | 
|  | 127 | <compilerSource>1.7</compilerSource> | 
|  | 128 | <compilerCompliance>1.7</compilerCompliance> | 
|  | 129 | <compilerTargetPlatform>1.7</compilerTargetPlatform> | 
|  | 130 | </configuration> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 131 | <!-- | 
| Michael Hanl | 8abaf9e | 2016-05-23 16:46:35 +0200 | [diff] [blame] | 132 | <executions> | 
|  | 133 | <execution> | 
|  | 134 | <goals> | 
|  | 135 | <goal>format</goal> | 
|  | 136 | </goals> | 
|  | 137 | </execution> | 
|  | 138 | </executions> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 139 | --> | 
| Michael Hanl | 8abaf9e | 2016-05-23 16:46:35 +0200 | [diff] [blame] | 140 | </plugin> | 
| Michael Hanl | c95c0a8 | 2015-10-20 16:45:46 +0200 | [diff] [blame] | 141 | <plugin> | 
|  | 142 | <groupId>org.apache.maven.plugins</groupId> | 
|  | 143 | <artifactId>maven-compiler-plugin</artifactId> | 
|  | 144 | <version>3.3</version> | 
|  | 145 | <configuration> | 
|  | 146 | <compilerVersion>1.7</compilerVersion> | 
|  | 147 | <source>1.7</source> | 
|  | 148 | <target>1.7</target> | 
|  | 149 | </configuration> | 
|  | 150 | </plugin> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 151 |  | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 152 | <!-- build tests jar, so extensions can use fastjerseytest class to build rest tests --> | 
| Bodmo | 3d6bd35 | 2017-04-25 11:31:39 +0200 | [diff] [blame] | 153 | <!-- >plugin> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 154 | <groupId>org.apache.maven.plugins</groupId> | 
|  | 155 | <artifactId>maven-jar-plugin</artifactId> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 156 | <version>2.1</version> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 157 | <executions> | 
|  | 158 | <execution> | 
|  | 159 | <phase>package</phase> | 
|  | 160 | <goals> | 
|  | 161 | <goal>test-jar</goal> | 
|  | 162 | </goals> | 
|  | 163 | </execution> | 
|  | 164 | </executions> | 
| Bodmo | 3d6bd35 | 2017-04-25 11:31:39 +0200 | [diff] [blame] | 165 | </plugin --> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 166 | <plugin> | 
|  | 167 | <groupId>org.apache.maven.plugins</groupId> | 
|  | 168 | <artifactId>maven-surefire-plugin</artifactId> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 169 | <version>2.19.1</version> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 170 | <configuration> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 171 | <reuseForks>false</reuseForks> | 
| Michael Hanl | 4563692 | 2016-06-03 14:00:56 +0200 | [diff] [blame] | 172 | <forkCount>2</forkCount> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 173 | <threadCount>10</threadCount> | 
|  | 174 |  | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 175 | <excludes> | 
|  | 176 | <exclude>**/*APITest.java</exclude> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 177 | <exclude>de/ids_mannheim/korap/suites/*.java</exclude> | 
| margaretha | fc2040a | 2017-04-18 12:07:23 +0200 | [diff] [blame] | 178 | <exclude>**/KustvaktServerTest.java</exclude> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 179 | </excludes> | 
|  | 180 | <includes> | 
| Michael Hanl | 8335675 | 2016-02-06 14:33:50 +0100 | [diff] [blame] | 181 | <include>de/ids_mannheim/korap/**/*.java</include> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 182 | </includes> | 
|  | 183 | </configuration> | 
|  | 184 | </plugin> | 
|  | 185 | <plugin> | 
|  | 186 | <artifactId>maven-shade-plugin</artifactId> | 
|  | 187 | <version>2.1</version> | 
|  | 188 | <executions> | 
|  | 189 | <!-- option 1 --> | 
|  | 190 | <execution> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 191 | <id>full</id> | 
|  | 192 | <phase>package</phase> | 
|  | 193 | <goals> | 
|  | 194 | <goal>shade</goal> | 
|  | 195 | </goals> | 
|  | 196 | <configuration> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 197 | <transformers> | 
|  | 198 | <transformer | 
|  | 199 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
|  | 200 | <mainClass> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 201 | de.ids_mannheim.korap.web.KustvaktServer | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 202 | </mainClass> | 
|  | 203 | </transformer> | 
|  | 204 | <transformer | 
|  | 205 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
|  | 206 | <resource>META-INF/spring.handlers | 
|  | 207 | </resource> | 
|  | 208 | </transformer> | 
|  | 209 | <transformer | 
|  | 210 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
|  | 211 | <resource>META-INF/spring.schemas | 
|  | 212 | </resource> | 
|  | 213 | </transformer> | 
|  | 214 | </transformers> | 
|  | 215 | <!-- Additional configuration. --> | 
| Michael Hanl | 59bff81 | 2015-10-27 23:10:32 +0100 | [diff] [blame] | 216 | <!-- apparently there is a securityException --> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 217 | <filters> | 
|  | 218 | <filter> | 
|  | 219 | <artifact>*:*</artifact> | 
|  | 220 | <excludes> | 
|  | 221 | <exclude>META-INF/*.SF</exclude> | 
|  | 222 | <exclude>META-INF/*.DSA | 
|  | 223 | </exclude> | 
|  | 224 | <exclude>META-INF/*.RSA | 
|  | 225 | </exclude> | 
|  | 226 | </excludes> | 
|  | 227 | </filter> | 
|  | 228 | </filters> | 
|  | 229 | </configuration> | 
|  | 230 | </execution> | 
|  | 231 | </executions> | 
|  | 232 | </plugin> | 
|  | 233 | </plugins> | 
|  | 234 | </build> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 235 | <dependencies> | 
|  | 236 | <dependency> | 
|  | 237 | <groupId>com.sun.jersey</groupId> | 
|  | 238 | <artifactId>jersey-bundle</artifactId> | 
|  | 239 | <version>1.8</version> | 
|  | 240 | </dependency> | 
|  | 241 | <dependency> | 
| Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 242 | <groupId>com.sun.jersey.jersey-test-framework</groupId> | 
|  | 243 | <artifactId>jersey-test-framework-core</artifactId> | 
|  | 244 | <version>1.19</version> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 245 | <scope>test</scope> | 
| Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 246 | </dependency> | 
|  | 247 | <dependency> | 
|  | 248 | <groupId>com.sun.jersey.jersey-test-framework</groupId> | 
|  | 249 | <artifactId>jersey-test-framework-grizzly</artifactId> | 
|  | 250 | <version>1.19</version> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 251 | <scope>test</scope> | 
| Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 252 | </dependency> | 
|  | 253 | <dependency> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 254 | <groupId>org.slf4j</groupId> | 
|  | 255 | <artifactId>slf4j-api</artifactId> | 
|  | 256 | <version>1.7.5</version> | 
|  | 257 | </dependency> | 
|  | 258 | <dependency> | 
|  | 259 | <groupId>org.slf4j</groupId> | 
|  | 260 | <artifactId>slf4j-log4j12</artifactId> | 
|  | 261 | <version>1.7.5</version> | 
|  | 262 | </dependency> | 
|  | 263 | <dependency> | 
|  | 264 | <groupId>log4j</groupId> | 
|  | 265 | <artifactId>log4j</artifactId> | 
|  | 266 | <version>1.2.17</version> | 
|  | 267 | </dependency> | 
|  | 268 | <dependency> | 
|  | 269 | <groupId>log4j</groupId> | 
|  | 270 | <artifactId>apache-log4j-extras</artifactId> | 
|  | 271 | <version>1.2.17</version> | 
|  | 272 | </dependency> | 
|  | 273 | <dependency> | 
|  | 274 | <groupId>junit</groupId> | 
|  | 275 | <artifactId>junit</artifactId> | 
|  | 276 | <version>4.11</version> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 277 | <scope>test</scope> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 278 | </dependency> | 
|  | 279 | <dependency> | 
|  | 280 | <groupId>org.projectlombok</groupId> | 
|  | 281 | <artifactId>lombok</artifactId> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 282 | <version>1.16.6</version> | 
| Michael Hanl | c8729b9 | 2015-09-02 12:37:36 +0200 | [diff] [blame] | 283 | <scope>provided</scope> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 284 | </dependency> | 
|  | 285 | <dependency> | 
|  | 286 | <groupId>joda-time</groupId> | 
|  | 287 | <artifactId>joda-time</artifactId> | 
|  | 288 | <version>2.2</version> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 289 | </dependency> | 
|  | 290 | <dependency> | 
| Michael Hanl | cafa03e | 2015-06-26 17:01:16 +0200 | [diff] [blame] | 291 | <groupId>de.ids_mannheim.korap</groupId> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 292 | <artifactId>Koral</artifactId> | 
| Bodmo | 3d6bd35 | 2017-04-25 11:31:39 +0200 | [diff] [blame] | 293 | <version>0.23</version> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 294 | <exclusions> | 
|  | 295 | <exclusion> | 
|  | 296 | <groupId>org.eclipse.jetty</groupId> | 
|  | 297 | <artifactId>jetty-servlet</artifactId> | 
|  | 298 | </exclusion> | 
|  | 299 | </exclusions> | 
|  | 300 | </dependency> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 301 | <!-- | 
|  | 302 | <dependency> | 
|  | 303 | <groupId>com.sun.jersey</groupId> | 
|  | 304 | <artifactId>jersey-grizzly2</artifactId> | 
|  | 305 | <version>1.8</version> | 
|  | 306 | </dependency> | 
|  | 307 | <dependency> | 
|  | 308 | <groupId>com.sun.grizzly</groupId> | 
|  | 309 | <artifactId>grizzly-servlet-webserver</artifactId> | 
|  | 310 | <version>1.9.18-i</version> | 
|  | 311 | </dependency> | 
|  | 312 | --> | 
| Michael Hanl | c8729b9 | 2015-09-02 12:37:36 +0200 | [diff] [blame] | 313 |  | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 314 | <dependency> | 
|  | 315 | <groupId>org.xerial</groupId> | 
|  | 316 | <artifactId>sqlite-jdbc</artifactId> | 
|  | 317 | <version>3.8.10.1</version> | 
|  | 318 | </dependency> | 
|  | 319 |  | 
|  | 320 | <dependency> | 
| Michael Hanl | 1939065 | 2016-01-16 11:01:24 +0100 | [diff] [blame] | 321 | <groupId>mysql</groupId> | 
|  | 322 | <artifactId>mysql-connector-java</artifactId> | 
|  | 323 | <version>5.1.6</version> | 
|  | 324 | </dependency> | 
|  | 325 |  | 
|  | 326 | <dependency> | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 327 | <groupId>org.apache.commons</groupId> | 
|  | 328 | <artifactId>commons-dbcp2</artifactId> | 
|  | 329 | <version>2.1.1</version> | 
|  | 330 | </dependency> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 331 | <!-- | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 332 | <dependency> | 
|  | 333 | <groupId>org.owasp.esapi</groupId> | 
|  | 334 | <artifactId>esapi</artifactId> | 
|  | 335 | <version>2.1.0</version> | 
|  | 336 | </dependency> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 337 | --> | 
| Michael Hanl | 08aa772 | 2016-06-03 13:34:37 +0200 | [diff] [blame] | 338 | <dependency> | 
|  | 339 | <groupId>commons-validator</groupId> | 
|  | 340 | <artifactId>commons-validator</artifactId> | 
|  | 341 | <version>1.4.0</version> | 
|  | 342 | </dependency> | 
| Michael Hanl | c0ed00f | 2016-06-23 14:33:10 +0200 | [diff] [blame] | 343 |  | 
| Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 344 | <dependency> | 
|  | 345 | <groupId>org.mindrot</groupId> | 
|  | 346 | <artifactId>jbcrypt</artifactId> | 
|  | 347 | <version>0.3m</version> | 
|  | 348 | </dependency> | 
|  | 349 |  | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 350 | <dependency> | 
|  | 351 | <groupId>com.nimbusds</groupId> | 
|  | 352 | <artifactId>nimbus-jose-jwt</artifactId> | 
|  | 353 | <version>2.10.1</version> | 
|  | 354 | </dependency> | 
|  | 355 |  | 
|  | 356 | <dependency> | 
|  | 357 | <groupId>de.ids_mannheim.korap</groupId> | 
|  | 358 | <artifactId>Krill</artifactId> | 
| Akron | 78e2d20 | 2016-10-13 14:17:11 +0200 | [diff] [blame] | 359 | <version>0.55.7</version> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 360 | <exclusions> | 
|  | 361 | <exclusion> | 
|  | 362 | <groupId>org.xerial</groupId> | 
|  | 363 | <artifactId>sqlite-jdbc</artifactId> | 
|  | 364 | </exclusion> | 
|  | 365 | </exclusions> | 
|  | 366 | </dependency> | 
|  | 367 | <dependency> | 
|  | 368 | <groupId>org.reflections</groupId> | 
|  | 369 | <artifactId>reflections</artifactId> | 
|  | 370 | <version>0.9.9-RC1</version> | 
|  | 371 | </dependency> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 372 | <!-- deprecated? --> | 
| Michael Hanl | 2760cc4 | 2015-11-16 19:30:01 +0100 | [diff] [blame] | 373 | <!--<dependency>--> | 
| Michael Hanl | 1939065 | 2016-01-16 11:01:24 +0100 | [diff] [blame] | 374 | <!--<groupId>com.restfuse</groupId>--> | 
|  | 375 | <!--<artifactId>com.eclipsesource.restfuse</artifactId>--> | 
|  | 376 | <!--<version>1.0.0</version>--> | 
|  | 377 | <!--<scope>provided</scope>--> | 
| Michael Hanl | 2760cc4 | 2015-11-16 19:30:01 +0100 | [diff] [blame] | 378 | <!--</dependency>--> | 
| Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 379 | <!-- deprecated --> | 
|  | 380 | <!--<dependency>--> | 
|  | 381 | <!--<groupId>com.jayway.restassured</groupId>--> | 
|  | 382 | <!--<artifactId>rest-assured</artifactId>--> | 
|  | 383 | <!--<version>2.4.0</version>--> | 
|  | 384 | <!--<scope>provided</scope>--> | 
|  | 385 | <!--</dependency>--> | 
| Michael Hanl | 2760cc4 | 2015-11-16 19:30:01 +0100 | [diff] [blame] | 386 | <!--<dependency>--> | 
| Michael Hanl | 1939065 | 2016-01-16 11:01:24 +0100 | [diff] [blame] | 387 | <!--<groupId>org.springframework</groupId>--> | 
|  | 388 | <!--<artifactId>spring-core</artifactId>--> | 
|  | 389 | <!--<version>4.0.5.RELEASE</version>--> | 
| Michael Hanl | 2760cc4 | 2015-11-16 19:30:01 +0100 | [diff] [blame] | 390 | <!--</dependency>--> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 391 | <dependency> | 
|  | 392 | <groupId>org.springframework</groupId> | 
|  | 393 | <artifactId>spring-context</artifactId> | 
|  | 394 | <version>4.0.5.RELEASE</version> | 
|  | 395 | </dependency> | 
|  | 396 | <dependency> | 
|  | 397 | <groupId>org.springframework</groupId> | 
|  | 398 | <artifactId>spring-context-support</artifactId> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 399 | <version>4.1.6.RELEASE</version> | 
|  | 400 | </dependency> | 
|  | 401 | <dependency> | 
|  | 402 | <groupId>org.springframework</groupId> | 
|  | 403 | <artifactId>spring-test</artifactId> | 
|  | 404 | <version>4.1.6.RELEASE</version> | 
|  | 405 | <scope>compile</scope> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 406 | </dependency> | 
|  | 407 |  | 
|  | 408 | <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this | 
|  | 409 | --> | 
|  | 410 | <dependency> | 
|  | 411 | <groupId>org.springframework</groupId> | 
|  | 412 | <artifactId>spring-aop</artifactId> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 413 | <version>4.1.6.RELEASE</version> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 414 | </dependency> | 
|  | 415 | <dependency> | 
|  | 416 | <groupId>org.springframework</groupId> | 
|  | 417 | <artifactId>spring-aspects</artifactId> | 
| Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 418 | <version>4.1.6.RELEASE</version> | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 419 | </dependency> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 420 |  | 
|  | 421 | <!-- copied from extension --> | 
|  | 422 | <dependency> | 
|  | 423 | <groupId>org.springframework</groupId> | 
|  | 424 | <artifactId>spring-jdbc</artifactId> | 
|  | 425 | <version>4.1.6.RELEASE</version> | 
|  | 426 | </dependency> | 
|  | 427 | <dependency> | 
|  | 428 | <groupId>org.springframework</groupId> | 
|  | 429 | <artifactId>spring-tx</artifactId> | 
|  | 430 | <version>4.1.6.RELEASE</version> | 
|  | 431 | </dependency> | 
|  | 432 | <dependency> | 
|  | 433 | <groupId>org.flywaydb</groupId> | 
|  | 434 | <artifactId>flyway-core</artifactId> | 
|  | 435 | <version>3.2.1</version> | 
|  | 436 | </dependency> | 
|  | 437 |  | 
|  | 438 | <dependency> | 
|  | 439 | <groupId>net.sf.ehcache</groupId> | 
|  | 440 | <artifactId>ehcache-core</artifactId> | 
|  | 441 | <version>2.6.5</version> | 
|  | 442 | </dependency> | 
|  | 443 |  | 
|  | 444 | <dependency> | 
|  | 445 | <groupId>org.apache.oltu.oauth2</groupId> | 
|  | 446 | <artifactId>org.apache.oltu.oauth2.authzserver</artifactId> | 
|  | 447 | <version>1.0.0</version> | 
|  | 448 | </dependency> | 
|  | 449 |  | 
|  | 450 | <!-- end copy --> | 
|  | 451 |  | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 452 | <dependency> | 
|  | 453 | <groupId>commons-collections</groupId> | 
|  | 454 | <artifactId>commons-collections</artifactId> | 
|  | 455 | <version>3.2.1</version> | 
|  | 456 | </dependency> | 
| Michael Hanl | 0f6ffd7 | 2015-08-27 19:23:15 +0200 | [diff] [blame] | 457 | <dependency> | 
|  | 458 | <groupId>org.eclipse.jetty</groupId> | 
|  | 459 | <artifactId>jetty-server</artifactId> | 
|  | 460 | <version>8.1.8.v20121106</version> | 
|  | 461 | </dependency> | 
|  | 462 | <dependency> | 
|  | 463 | <groupId>org.eclipse.jetty</groupId> | 
|  | 464 | <artifactId>jetty-servlet</artifactId> | 
|  | 465 | <version>8.1.8.v20121106</version> | 
|  | 466 | </dependency> | 
| Michael Hanl | 1939065 | 2016-01-16 11:01:24 +0100 | [diff] [blame] | 467 | <dependency> | 
|  | 468 | <groupId>asm</groupId> | 
|  | 469 | <artifactId>asm</artifactId> | 
|  | 470 | <version>3.3.1</version> | 
|  | 471 | </dependency> | 
| Bodmo | 3d6bd35 | 2017-04-25 11:31:39 +0200 | [diff] [blame] | 472 | <dependency> | 
|  | 473 | <groupId>com.novell.ldap</groupId> | 
|  | 474 | <artifactId>jldap</artifactId> | 
|  | 475 | <version>4.3</version> | 
|  | 476 | </dependency> | 
|  | 477 | <!-- https://mvnrepository.com/artifact/com.unboundid/unboundid-ldapsdk --> | 
|  | 478 | <dependency> | 
|  | 479 | <groupId>com.unboundid</groupId> | 
|  | 480 | <artifactId>unboundid-ldapsdk</artifactId> | 
|  | 481 | <version>3.2.1</version> | 
|  | 482 | </dependency> | 
| Michael Hanl | 9f8d90c | 2015-09-14 16:13:54 +0200 | [diff] [blame] | 483 |  | 
| Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 484 | <!-- | 
|  | 485 | not part of public release | 
|  | 486 | <dependency> | 
|  | 487 | <groupId>KorAP-graphDB</groupId> | 
|  | 488 | <artifactId>KorAP-graphDB</artifactId> | 
|  | 489 | <version>1.0-SNAPSHOT</version> | 
|  | 490 | <exclusions> | 
|  | 491 | <exclusion> | 
|  | 492 | <groupId>org.antlr</groupId> | 
|  | 493 | <artifactId>antlr4-runtime</artifactId> | 
|  | 494 | </exclusion> | 
|  | 495 | <exclusion> | 
|  | 496 | <groupId>org.glassfish.jersey.core</groupId> | 
|  | 497 | <artifactId>jersey-client</artifactId> | 
|  | 498 | </exclusion> | 
|  | 499 | <exclusion> | 
|  | 500 | <groupId>org.glassfish.jersey.containers</groupId> | 
|  | 501 | <artifactId>jersey-container-grizzly2-http</artifactId> | 
|  | 502 | </exclusion> | 
|  | 503 | <exclusion> | 
|  | 504 | <groupId>org.glassfish.jersey.core</groupId> | 
|  | 505 | <artifactId>jersey-common</artifactId> | 
|  | 506 | </exclusion> | 
|  | 507 | <exclusion> | 
|  | 508 | <groupId>org.glassfish.jersey.core</groupId> | 
|  | 509 | <artifactId>jersey-server</artifactId> | 
|  | 510 | </exclusion> | 
|  | 511 | </exclusions> | 
|  | 512 | </dependency> | 
|  | 513 | --> | 
| margaretha | 1a6d020 | 2017-02-16 18:09:39 +0100 | [diff] [blame] | 514 | <dependency> | 
|  | 515 | <groupId>org.apache.httpcomponents</groupId> | 
|  | 516 | <artifactId>httpclient</artifactId> | 
|  | 517 | <version>4.3.3</version> | 
|  | 518 | </dependency> | 
|  | 519 | <dependency> | 
|  | 520 | <groupId>commons-io</groupId> | 
|  | 521 | <artifactId>commons-io</artifactId> | 
|  | 522 | <version>2.4</version> | 
|  | 523 | </dependency> | 
| Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 524 | </dependencies> | 
|  | 525 |  | 
|  | 526 | </project> |