blob: 1391cc4246ffa486865dfe6c28b4bd823f072b30 [file] [log] [blame]
margarethaf68daa62017-09-21 02:11:24 +02001<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-full</artifactId>
margaretha9025d642018-01-19 17:35:22 +01006 <version>0.59.10</version>
margarethaf68daa62017-09-21 02:11:24 +02007 <properties>
margaretha2c019fa2018-02-01 19:50:51 +01008 <java.version>1.8</java.version>
margarethaf68daa62017-09-21 02:11:24 +02009 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
margaretha2c019fa2018-02-01 19:50:51 +010010 <spring-framework.version>5.0.3.RELEASE</spring-framework.version>
11 <spring-security.version>4.2.3.RELEASE</spring-security.version>
margaretha58e18632018-02-15 13:04:42 +010012 <jetty.version>9.4.8.v20171121</jetty.version>
margarethaf68daa62017-09-21 02:11:24 +020013 <jersey.version>1.19.4</jersey.version>
margaretha9025d642018-01-19 17:35:22 +010014 <hibernate.version>5.1.11.Final</hibernate.version>
margarethaf68daa62017-09-21 02:11:24 +020015 </properties>
16 <build>
17 <resources>
18 <resource>
19 <directory>src/main/resources</directory>
20 <filtering>true</filtering>
21 <includes>
22 <include>**/*.info</include>
23 <include>**/*.xml</include>
24 <include>**/*.conf</include>
25 <include>**/*.kustvakt</include>
26 <include>**/*.properties</include>
27 <include>**/*.sql</include>
margaretha7f0a4d42018-02-20 19:16:44 +010028 <include>**/*.vm</include>
margarethaf68daa62017-09-21 02:11:24 +020029 </includes>
30 </resource>
31 </resources>
32 <testResources>
33 <testResource>
34 <directory>src/test/resources</directory>
35 <filtering>true</filtering>
36 <includes>
margarethadfecb4b2017-12-12 19:32:30 +010037 <include>**/*.token</include>
margarethaf68daa62017-09-21 02:11:24 +020038 <include>**/*.xml</include>
39 <include>**/*.conf</include>
40 <include>**/*.info</include>
41 <include>**/*.properties</include>
42 </includes>
43 </testResource>
44 <testResource>
45 <directory>src/main/resources</directory>
46 <filtering>true</filtering>
47 <includes>
48 <include>**/*.info</include>
49 <include>**/*.properties</include>
50 </includes>
51 </testResource>
52 </testResources>
53 <plugins>
54 <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html -->
55 <plugin>
56 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
57 <artifactId>maven-java-formatter-plugin</artifactId>
58 <version>0.4</version>
59 <configuration>
60 <configFile>${project.basedir}/Format.xml</configFile>
61 <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion>
62 <compilerSource>${java.version}</compilerSource>
63 <compilerCompliance>${java.version}</compilerCompliance>
64 <compilerTargetPlatform>${java.version}</compilerTargetPlatform>
65 </configuration>
66 <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution>
67 </executions> -->
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-compiler-plugin</artifactId>
margarethafc7d7772018-01-16 17:48:17 +010072 <version>3.7.0</version>
margarethaf68daa62017-09-21 02:11:24 +020073 <configuration>
74 <compilerVersion>${java.version}</compilerVersion>
75 <source>${java.version}</source>
76 <target>${java.version}</target>
margaretha58e18632018-02-15 13:04:42 +010077 <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
78 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
79 </compilerArguments> -->
margaretha9025d642018-01-19 17:35:22 +010080 <processors>
margarethafc7d7772018-01-16 17:48:17 +010081 <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
82 <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
margaretha9025d642018-01-19 17:35:22 +010083 </processors>
margarethaf68daa62017-09-21 02:11:24 +020084 </configuration>
85 </plugin>
margarethaf68daa62017-09-21 02:11:24 +020086 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-surefire-plugin</artifactId>
89 <version>2.19.1</version>
90 <configuration>
91 <reuseForks>false</reuseForks>
92 <forkCount>2</forkCount>
93 <threadCount>10</threadCount>
94
95 <excludes>
margarethafc7d7772018-01-16 17:48:17 +010096 <!-- <exclude>de/ids_mannheim/korap/suites/*.java</exclude> -->
97 <!-- <exclude>de/ids_mannheim/korap/dao/*.java</exclude> -->
margarethadfecb4b2017-12-12 19:32:30 +010098 <exclude>de/ids_mannheim/korap/authentication/*.java</exclude>
margarethafc7d7772018-01-16 17:48:17 +010099 <!-- <exclude>**/ResourceServiceTest.java</exclude> -->
100 <!-- <exclude>**/ResourceInfoServiceTest.java</exclude> -->
margarethaf68daa62017-09-21 02:11:24 +0200101 <exclude>**/PolicyServiceTest.java</exclude>
102 </excludes>
103 <includes>
104 <include>de/ids_mannheim/korap/**/*.java</include>
105 </includes>
106 </configuration>
107 </plugin>
108 <plugin>
109 <artifactId>maven-shade-plugin</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100110 <version>3.1.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200111 <executions>
112 <!-- option 1 -->
113 <execution>
114 <id>full</id>
115 <phase>package</phase>
116 <goals>
117 <goal>shade</goal>
118 </goals>
119 <configuration>
margarethaea68a0a2017-09-21 03:09:49 +0200120 <finalName>Kustvakt-full-${project.version}</finalName>
margarethaf68daa62017-09-21 02:11:24 +0200121 <transformers>
122 <transformer
123 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
124 <mainClass>
125 de.ids_mannheim.korap.server.KustvaktServer
126 </mainClass>
127 </transformer>
128 <transformer
129 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
130 <resource>META-INF/spring.handlers
131 </resource>
132 </transformer>
133 <transformer
134 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
135 <resource>META-INF/spring.schemas
136 </resource>
137 </transformer>
138 </transformers>
139 <!-- Additional configuration. apparently there is a securityException -->
140 <filters>
141 <filter>
142 <artifact>*:*</artifact>
143 <excludes>
144 <exclude>META-INF/*.SF</exclude>
145 <exclude>META-INF/*.DSA
146 </exclude>
147 <exclude>META-INF/*.RSA
148 </exclude>
149 </excludes>
150 </filter>
151 </filters>
152 </configuration>
153 </execution>
154 </executions>
155 </plugin>
156
157 </plugins>
158 </build>
159
160 <dependencies>
161 <dependency>
162 <groupId>de.ids_mannheim.korap</groupId>
163 <artifactId>Kustvakt-core</artifactId>
margaretha45667922018-01-25 21:23:03 +0100164 <version>0.59.10</version>
margaretha894a7d72017-11-08 19:24:20 +0100165 <type>jar</type>
margarethaf68daa62017-09-21 02:11:24 +0200166 </dependency>
margaretha54134902017-09-27 18:43:11 +0200167 <!-- LDAP -->
168 <dependency>
169 <groupId>com.novell.ldap</groupId>
170 <artifactId>jldap</artifactId>
171 <version>4.3</version>
172 </dependency>
margaretha54134902017-09-27 18:43:11 +0200173 <dependency>
174 <groupId>com.unboundid</groupId>
175 <artifactId>unboundid-ldapsdk</artifactId>
176 <version>3.2.1</version>
177 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200178
margarethaf68daa62017-09-21 02:11:24 +0200179 <!-- Hibernate -->
180 <dependency>
181 <groupId>org.hibernate</groupId>
182 <artifactId>hibernate-entitymanager</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100183 <version>${hibernate.version}</version>
184 <exclusions>
185 <exclusion>
186 <groupId>org.javassist</groupId>
margaretha58e18632018-02-15 13:04:42 +0100187 <artifactId>javassist</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100188 </exclusion>
189 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200190 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200191 <dependency>
192 <groupId>org.hibernate</groupId>
193 <artifactId>hibernate-jpamodelgen</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100194 <version>${hibernate.version}</version>
margarethad3c0fc92017-10-25 15:03:32 +0200195 <scope>provided</scope>
196 </dependency>
margaretha9025d642018-01-19 17:35:22 +0100197 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100198 <groupId>org.hibernate</groupId>
199 <artifactId>hibernate-java8</artifactId>
200 <version>${hibernate.version}</version>
margarethae6c711b2018-02-06 21:55:04 +0100201 </dependency>
202 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100203 <groupId>org.javassist</groupId>
204 <artifactId>javassist</artifactId>
205 <version>3.22.0-GA</version>
margaretha9025d642018-01-19 17:35:22 +0100206 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200207
margaretha318fec32017-10-24 12:11:58 +0200208 <!-- MySql -->
209 <dependency>
210 <groupId>mysql</groupId>
211 <artifactId>mysql-connector-java</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100212 <version>6.0.6</version>
margaretha318fec32017-10-24 12:11:58 +0200213 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200214
215 <!-- Jersey -->
216 <dependency>
217 <groupId>com.sun.jersey.jersey-test-framework</groupId>
218 <artifactId>jersey-test-framework-core</artifactId>
219 <version>${jersey.version}</version>
220 <scope>test</scope>
221 </dependency>
222 <dependency>
223 <groupId>com.sun.jersey.jersey-test-framework</groupId>
224 <artifactId>jersey-test-framework-grizzly</artifactId>
225 <version>${jersey.version}</version>
226 <scope>test</scope>
227 </dependency>
margaretha7f0a4d42018-02-20 19:16:44 +0100228 <dependency>
229 <groupId>com.sun.jersey</groupId>
230 <artifactId>jersey-json</artifactId>
231 <version>${jersey.version}</version>
232 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200233
234 <!-- Spring -->
margaretha54134902017-09-27 18:43:11 +0200235 <dependency>
236 <groupId>org.springframework</groupId>
237 <artifactId>spring-jdbc</artifactId>
238 <version>${spring-framework.version}</version>
239 </dependency>
240 <dependency>
241 <groupId>org.springframework</groupId>
242 <artifactId>spring-tx</artifactId>
243 <version>${spring-framework.version}</version>
244 </dependency>
margaretha2afb97d2017-12-07 19:18:44 +0100245 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100246 <groupId>org.springframework.security</groupId>
247 <artifactId>spring-security-core</artifactId>
248 <version>${spring-security.version}</version>
margaretha2afb97d2017-12-07 19:18:44 +0100249 </dependency>
250 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100251 <groupId>org.springframework.security</groupId>
252 <artifactId>spring-security-web</artifactId>
253 <version>${spring-security.version}</version>
254 </dependency>
255
256 <!-- jetty -->
margaretha7f0a4d42018-02-20 19:16:44 +0100257 <!-- <dependency>
margaretha58e18632018-02-15 13:04:42 +0100258 <groupId>org.eclipse.jetty</groupId>
259 <artifactId>jetty-jndi</artifactId>
260 <version>${jetty.version}</version>
261 </dependency>
262 <dependency>
263 <groupId>org.eclipse.jetty</groupId>
264 <artifactId>jetty-plus</artifactId>
265 <version>${jetty.version}</version>
margaretha7f0a4d42018-02-20 19:16:44 +0100266 </dependency> -->
margaretha58e18632018-02-15 13:04:42 +0100267
268 <!-- velocity -->
269 <dependency>
270 <groupId>org.apache.velocity</groupId>
271 <artifactId>velocity-engine-core</artifactId>
272 <version>2.0</version>
273 </dependency>
274 <dependency>
275 <groupId>org.apache.velocity</groupId>
276 <artifactId>velocity-tools</artifactId>
277 <version>2.0</version>
278 </dependency>
279 <!-- mail -->
280 <dependency>
281 <groupId>com.sun.mail</groupId>
282 <artifactId>javax.mail</artifactId>
283 <version>1.6.0</version>
284 </dependency>
285 <dependency>
286 <groupId>javax.activation</groupId>
287 <artifactId>activation</artifactId>
288 <version>1.1.1</version>
289 </dependency>
290
291 <dependency>
292 <groupId>javax.servlet</groupId>
293 <artifactId>javax.servlet-api</artifactId>
294 <version>4.0.0</version>
margaretha2afb97d2017-12-07 19:18:44 +0100295 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200296
margaretha54134902017-09-27 18:43:11 +0200297 <!-- Flyway -->
298 <dependency>
299 <groupId>org.flywaydb</groupId>
300 <artifactId>flyway-core</artifactId>
301 <version>4.0</version>
302 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200303 </dependencies>
margaretha58e18632018-02-15 13:04:42 +0100304
margarethaf68daa62017-09-21 02:11:24 +0200305</project>