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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion>
|
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 4 | <groupId>de.ids_mannheim.korap</groupId>
|
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 5 | <artifactId>Kustvakt-core</artifactId>
|
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 6 | <name>Kustvakt core</name>
|
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 7 | <version>0.2</version>
|
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 8 | <description>Kustvakt core, basic rest api for testing purposes and default
|
| 9 | interfaces</description>
|
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 10 | <build>
|
| 11 | <plugins>
|
| 12 | <plugin>
|
| 13 | <artifactId>maven-surefire-plugin</artifactId>
|
| 14 | <version>2.9</version>
|
| 15 | <configuration>
|
| 16 | <excludes>
|
| 17 | <exclude>**/*APITest.java</exclude>
|
| 18 | </excludes>
|
| 19 | <includes>
|
| 20 | <include>**/TestSuite.java</include>
|
| 21 | </includes>
|
| 22 | </configuration>
|
| 23 | </plugin>
|
| 24 | <plugin>
|
| 25 | <artifactId>maven-shade-plugin</artifactId>
|
| 26 | <version>2.1</version>
|
| 27 | <executions>
|
| 28 | <execution>
|
| 29 | <id>light</id>
|
| 30 | <phase>package</phase>
|
| 31 | <goals>
|
| 32 | <goal>shade</goal>
|
| 33 | </goals>
|
| 34 | <configuration>
|
| 35 | <transformers>
|
| 36 | <transformer>
|
| 37 | <mainClass>de.ids_mannheim.korap.web.Kustvakt</mainClass>
|
| 38 | </transformer>
|
| 39 | <transformer>
|
| 40 | <resource>META-INF/spring.handlers</resource>
|
| 41 | </transformer>
|
| 42 | <transformer>
|
| 43 | <resource>META-INF/spring.schemas</resource>
|
| 44 | </transformer>
|
| 45 | </transformers>
|
| 46 | <filters>
|
| 47 | <filter>
|
| 48 | <artifact>*:*</artifact>
|
| 49 | <excludes>
|
| 50 | <exclude>META-INF/*.SF</exclude>
|
| 51 | <exclude>META-INF/*.DSA</exclude>
|
| 52 | <exclude>META-INF/*.RSA</exclude>
|
| 53 | </excludes>
|
| 54 | </filter>
|
| 55 | </filters>
|
| 56 | </configuration>
|
| 57 | </execution>
|
| 58 | </executions>
|
| 59 | </plugin>
|
| 60 | </plugins>
|
| 61 | </build>
|
| 62 | <repositories>
|
| 63 | <repository>
|
| 64 | <id>codehaus-release-repo</id>
|
| 65 | <name>Codehaus Release Repo</name>
|
| 66 | <url>http://repository.codehaus.org</url>
|
| 67 | </repository>
|
| 68 | <repository>
|
| 69 | <id>central</id>
|
| 70 | <url>http://repo1.maven.org/maven2/</url>
|
| 71 | </repository>
|
| 72 | <repository>
|
| 73 | <snapshots />
|
| 74 | <id>sonatype</id>
|
| 75 | <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
| 76 | </repository>
|
| 77 | </repositories>
|
| 78 | <dependencies>
|
| 79 | <dependency>
|
| 80 | <groupId>com.restfuse</groupId>
|
| 81 | <artifactId>com.eclipsesource.restfuse</artifactId>
|
| 82 | <version>1.0.0</version>
|
| 83 | <scope>provided</scope>
|
| 84 | <exclusions>
|
| 85 | <exclusion>
|
| 86 | <artifactId>jetty-j2se6</artifactId>
|
| 87 | <groupId>org.mortbay.jetty</groupId>
|
| 88 | </exclusion>
|
| 89 | </exclusions>
|
| 90 | </dependency>
|
| 91 | <dependency>
|
| 92 | <groupId>com.jayway.restassured</groupId>
|
| 93 | <artifactId>rest-assured</artifactId>
|
| 94 | <version>2.4.0</version>
|
| 95 | <scope>provided</scope>
|
| 96 | <exclusions>
|
| 97 | <exclusion>
|
| 98 | <artifactId>groovy</artifactId>
|
| 99 | <groupId>org.codehaus.groovy</groupId>
|
| 100 | </exclusion>
|
| 101 | <exclusion>
|
| 102 | <artifactId>groovy-xml</artifactId>
|
| 103 | <groupId>org.codehaus.groovy</groupId>
|
| 104 | </exclusion>
|
| 105 | <exclusion>
|
Michael Hanl | badd79c | 2015-06-19 07:41:03 +0200 | [diff] [blame] | 106 | <artifactId>httpclient</artifactId>
|
| 107 | <groupId>org.apache.httpcomponents</groupId>
|
| 108 | </exclusion>
|
| 109 | <exclusion>
|
| 110 | <artifactId>httpmime</artifactId>
|
| 111 | <groupId>org.apache.httpcomponents</groupId>
|
| 112 | </exclusion>
|
| 113 | <exclusion>
|
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 114 | <artifactId>hamcrest-library</artifactId>
|
| 115 | <groupId>org.hamcrest</groupId>
|
| 116 | </exclusion>
|
| 117 | <exclusion>
|
| 118 | <artifactId>tagsoup</artifactId>
|
| 119 | <groupId>org.ccil.cowan.tagsoup</groupId>
|
| 120 | </exclusion>
|
| 121 | <exclusion>
|
| 122 | <artifactId>json-path</artifactId>
|
| 123 | <groupId>com.jayway.restassured</groupId>
|
| 124 | </exclusion>
|
| 125 | <exclusion>
|
| 126 | <artifactId>xml-path</artifactId>
|
| 127 | <groupId>com.jayway.restassured</groupId>
|
| 128 | </exclusion>
|
| 129 | </exclusions>
|
| 130 | </dependency>
|
| 131 | </dependencies>
|
| 132 | <properties>
|
| 133 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 134 | <maven.compiler.source>1.7</maven.compiler.source>
|
| 135 | <maven.compiler.target>1.7</maven.compiler.target>
|
| 136 | </properties>
|
| 137 | </project>
|
| 138 |
|