Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | 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] | 5 | <modelVersion>4.0.0</modelVersion> |
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 6 | <groupId>de.ids_mannheim.korap</groupId> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 7 | <artifactId>Kustvakt-core</artifactId> |
| 8 | <version>0.2</version> |
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 9 | <packaging>jar</packaging> |
| 10 | <name>Kustvakt core</name> |
| 11 | <description>Kustvakt core, basic rest api for testing purposes and default |
| 12 | interfaces |
| 13 | </description> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 14 | <properties> |
| 15 | <maven.compiler.source>1.7</maven.compiler.source> |
| 16 | <maven.compiler.target>1.7</maven.compiler.target> |
| 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | </properties> |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.maven.plugins</groupId> |
| 23 | <artifactId>maven-surefire-plugin</artifactId> |
| 24 | <version>2.9</version> |
| 25 | <!-- ??? --> |
| 26 | <configuration> |
| 27 | <excludes> |
| 28 | <exclude>**/*APITest.java</exclude> |
| 29 | </excludes> |
| 30 | <includes> |
| 31 | <include>**/TestSuite.java</include> |
| 32 | </includes> |
| 33 | </configuration> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <artifactId>maven-shade-plugin</artifactId> |
| 37 | <version>2.1</version> |
| 38 | <executions> |
| 39 | <!-- option 1 --> |
| 40 | <execution> |
| 41 | <id>light</id> |
| 42 | <phase>package</phase> |
| 43 | <goals> |
| 44 | <goal>shade</goal> |
| 45 | </goals> |
| 46 | <configuration> |
| 47 | <transformers> |
| 48 | <transformer |
| 49 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 50 | <mainClass> |
| 51 | de.ids_mannheim.korap.web.Kustvakt |
| 52 | </mainClass> |
| 53 | </transformer> |
| 54 | <transformer |
| 55 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 56 | <resource>META-INF/spring.handlers |
| 57 | </resource> |
| 58 | </transformer> |
| 59 | <transformer |
| 60 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 61 | <resource>META-INF/spring.schemas |
| 62 | </resource> |
| 63 | </transformer> |
| 64 | </transformers> |
| 65 | <!-- Additional configuration. --> |
| 66 | <!-- apparently there is a securityexception --> |
| 67 | <filters> |
| 68 | <filter> |
| 69 | <artifact>*:*</artifact> |
| 70 | <excludes> |
| 71 | <exclude>META-INF/*.SF</exclude> |
| 72 | <exclude>META-INF/*.DSA |
| 73 | </exclude> |
| 74 | <exclude>META-INF/*.RSA |
| 75 | </exclude> |
| 76 | </excludes> |
| 77 | </filter> |
| 78 | </filters> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </build> |
| 85 | <repositories> |
| 86 | <repository> |
| 87 | <id>codehaus-release-repo</id> |
| 88 | <name>Codehaus Release Repo</name> |
| 89 | <url>http://repository.codehaus.org</url> |
| 90 | </repository> |
| 91 | <repository> |
| 92 | <id>central</id> |
| 93 | <url>http://repo1.maven.org/maven2/</url> |
| 94 | </repository> |
| 95 | <repository> |
| 96 | <id>sonatype</id> |
| 97 | <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 98 | <snapshots/> |
| 99 | </repository> |
| 100 | </repositories> |
| 101 | <dependencies> |
| 102 | <dependency> |
| 103 | <groupId>com.sun.jersey</groupId> |
| 104 | <artifactId>jersey-bundle</artifactId> |
| 105 | <version>1.8</version> |
| 106 | </dependency> |
| 107 | <dependency> |
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 108 | <groupId>org.slf4j</groupId> |
| 109 | <artifactId>slf4j-api</artifactId> |
| 110 | <version>1.7.5</version> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.slf4j</groupId> |
| 114 | <artifactId>slf4j-log4j12</artifactId> |
| 115 | <version>1.7.5</version> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>log4j</groupId> |
| 119 | <artifactId>log4j</artifactId> |
| 120 | <version>1.2.17</version> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>log4j</groupId> |
| 124 | <artifactId>apache-log4j-extras</artifactId> |
| 125 | <version>1.2.17</version> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>junit</groupId> |
| 129 | <artifactId>junit</artifactId> |
| 130 | <version>4.11</version> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>org.projectlombok</groupId> |
| 134 | <artifactId>lombok</artifactId> |
| 135 | <version>0.11.8</version> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>joda-time</groupId> |
| 139 | <artifactId>joda-time</artifactId> |
| 140 | <version>2.2</version> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 141 | </dependency> |
| 142 | <dependency> |
Michael Hanl | cafa03e | 2015-06-26 17:01:16 +0200 | [diff] [blame] | 143 | <groupId>de.ids_mannheim.korap</groupId> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 144 | <artifactId>Koral</artifactId> |
Michael Hanl | 505f48c | 2015-06-26 19:04:27 +0200 | [diff] [blame^] | 145 | <version>0.21</version> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 146 | <exclusions> |
| 147 | <exclusion> |
| 148 | <groupId>org.eclipse.jetty</groupId> |
| 149 | <artifactId>jetty-servlet</artifactId> |
| 150 | </exclusion> |
| 151 | </exclusions> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>com.sun.jersey</groupId> |
| 155 | <artifactId>jersey-grizzly2</artifactId> |
| 156 | <version>1.8</version> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>com.sun.grizzly</groupId> |
| 160 | <artifactId>grizzly-servlet-webserver</artifactId> |
| 161 | <version>1.9.18-i</version> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>com.nimbusds</groupId> |
| 165 | <artifactId>nimbus-jose-jwt</artifactId> |
| 166 | <version>2.10.1</version> |
| 167 | </dependency> |
| 168 | |
| 169 | <dependency> |
| 170 | <groupId>de.ids_mannheim.korap</groupId> |
| 171 | <artifactId>Krill</artifactId> |
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 172 | <version>0.52</version> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 173 | <exclusions> |
| 174 | <exclusion> |
| 175 | <groupId>org.xerial</groupId> |
| 176 | <artifactId>sqlite-jdbc</artifactId> |
| 177 | </exclusion> |
| 178 | </exclusions> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.reflections</groupId> |
| 182 | <artifactId>reflections</artifactId> |
| 183 | <version>0.9.9-RC1</version> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>com.restfuse</groupId> |
| 187 | <artifactId>com.eclipsesource.restfuse</artifactId> |
| 188 | <version>1.0.0</version> |
| 189 | <scope>provided</scope> |
| 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>com.jayway.restassured</groupId> |
| 193 | <artifactId>rest-assured</artifactId> |
| 194 | <version>2.4.0</version> |
| 195 | <scope>provided</scope> |
| 196 | </dependency> |
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 197 | <dependency> |
| 198 | <groupId>org.springframework</groupId> |
| 199 | <artifactId>spring-core</artifactId> |
| 200 | <version>4.0.5.RELEASE</version> |
| 201 | </dependency> |
| 202 | <dependency> |
| 203 | <groupId>org.springframework</groupId> |
| 204 | <artifactId>spring-context</artifactId> |
| 205 | <version>4.0.5.RELEASE</version> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>org.springframework</groupId> |
| 209 | <artifactId>spring-context-support</artifactId> |
| 210 | <version>4.0.5.RELEASE</version> |
| 211 | </dependency> |
| 212 | |
| 213 | <!-- apparently this order prevents the spring schemas from being overriden in META-INF/spring.schemas, thus must stay like this |
| 214 | --> |
| 215 | <dependency> |
| 216 | <groupId>org.springframework</groupId> |
| 217 | <artifactId>spring-aop</artifactId> |
| 218 | <version>4.0.5.RELEASE</version> |
| 219 | </dependency> |
| 220 | <dependency> |
| 221 | <groupId>org.springframework</groupId> |
| 222 | <artifactId>spring-aspects</artifactId> |
| 223 | <version>4.0.5.RELEASE</version> |
| 224 | </dependency> |
| 225 | <dependency> |
| 226 | <groupId>commons-collections</groupId> |
| 227 | <artifactId>commons-collections</artifactId> |
| 228 | <version>3.2.1</version> |
| 229 | </dependency> |
| 230 | <!-- |
| 231 | not part of public release |
| 232 | <dependency> |
| 233 | <groupId>KorAP-graphDB</groupId> |
| 234 | <artifactId>KorAP-graphDB</artifactId> |
| 235 | <version>1.0-SNAPSHOT</version> |
| 236 | <exclusions> |
| 237 | <exclusion> |
| 238 | <groupId>org.antlr</groupId> |
| 239 | <artifactId>antlr4-runtime</artifactId> |
| 240 | </exclusion> |
| 241 | <exclusion> |
| 242 | <groupId>org.glassfish.jersey.core</groupId> |
| 243 | <artifactId>jersey-client</artifactId> |
| 244 | </exclusion> |
| 245 | <exclusion> |
| 246 | <groupId>org.glassfish.jersey.containers</groupId> |
| 247 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 248 | </exclusion> |
| 249 | <exclusion> |
| 250 | <groupId>org.glassfish.jersey.core</groupId> |
| 251 | <artifactId>jersey-common</artifactId> |
| 252 | </exclusion> |
| 253 | <exclusion> |
| 254 | <groupId>org.glassfish.jersey.core</groupId> |
| 255 | <artifactId>jersey-server</artifactId> |
| 256 | </exclusion> |
| 257 | </exclusions> |
| 258 | </dependency> |
| 259 | --> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 260 | </dependencies> |
| 261 | |
| 262 | </project> |