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