blob: 9ea7367ad9150eafa56e5a37378748dd7e038471 [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>
margaretha07402f42018-05-07 19:07:45 +02006 <version>0.60.3</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>
margarethaa86b1412018-02-21 20:40:35 +010089 <version>2.20.1</version>
margarethaf68daa62017-09-21 02:11:24 +020090 <configuration>
91 <reuseForks>false</reuseForks>
92 <forkCount>2</forkCount>
margarethaefc18a42018-03-01 16:01:42 +010093 <threadCount>4</threadCount>
94 <argLine>-Xmx512m -XX:MaxPermSize=256m</argLine>
margarethaf68daa62017-09-21 02:11:24 +020095 <excludes>
margarethadfecb4b2017-12-12 19:32:30 +010096 <exclude>de/ids_mannheim/korap/authentication/*.java</exclude>
margarethaf68daa62017-09-21 02:11:24 +020097 </excludes>
98 <includes>
99 <include>de/ids_mannheim/korap/**/*.java</include>
100 </includes>
101 </configuration>
102 </plugin>
103 <plugin>
104 <artifactId>maven-shade-plugin</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100105 <version>3.1.0</version>
margarethaf68daa62017-09-21 02:11:24 +0200106 <executions>
107 <!-- option 1 -->
108 <execution>
109 <id>full</id>
110 <phase>package</phase>
111 <goals>
112 <goal>shade</goal>
113 </goals>
114 <configuration>
margarethaea68a0a2017-09-21 03:09:49 +0200115 <finalName>Kustvakt-full-${project.version}</finalName>
margarethaf68daa62017-09-21 02:11:24 +0200116 <transformers>
117 <transformer
118 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
119 <mainClass>
120 de.ids_mannheim.korap.server.KustvaktServer
121 </mainClass>
122 </transformer>
123 <transformer
124 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
125 <resource>META-INF/spring.handlers
126 </resource>
127 </transformer>
128 <transformer
129 implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
130 <resource>META-INF/spring.schemas
131 </resource>
132 </transformer>
133 </transformers>
134 <!-- Additional configuration. apparently there is a securityException -->
135 <filters>
136 <filter>
137 <artifact>*:*</artifact>
138 <excludes>
139 <exclude>META-INF/*.SF</exclude>
140 <exclude>META-INF/*.DSA
141 </exclude>
142 <exclude>META-INF/*.RSA
143 </exclude>
144 </excludes>
145 </filter>
146 </filters>
147 </configuration>
148 </execution>
149 </executions>
150 </plugin>
151
152 </plugins>
153 </build>
154
155 <dependencies>
156 <dependency>
157 <groupId>de.ids_mannheim.korap</groupId>
158 <artifactId>Kustvakt-core</artifactId>
margaretha417571c2018-05-09 22:55:06 +0200159 <version>0.60.3</version>
margarethaf68daa62017-09-21 02:11:24 +0200160 </dependency>
margaretha54134902017-09-27 18:43:11 +0200161 <!-- LDAP -->
162 <dependency>
163 <groupId>com.novell.ldap</groupId>
164 <artifactId>jldap</artifactId>
165 <version>4.3</version>
166 </dependency>
margaretha54134902017-09-27 18:43:11 +0200167 <dependency>
168 <groupId>com.unboundid</groupId>
169 <artifactId>unboundid-ldapsdk</artifactId>
170 <version>3.2.1</version>
171 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200172
margarethaf68daa62017-09-21 02:11:24 +0200173 <!-- Hibernate -->
174 <dependency>
175 <groupId>org.hibernate</groupId>
176 <artifactId>hibernate-entitymanager</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100177 <version>${hibernate.version}</version>
178 <exclusions>
179 <exclusion>
180 <groupId>org.javassist</groupId>
margaretha58e18632018-02-15 13:04:42 +0100181 <artifactId>javassist</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100182 </exclusion>
183 </exclusions>
margarethaf68daa62017-09-21 02:11:24 +0200184 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200185 <dependency>
186 <groupId>org.hibernate</groupId>
187 <artifactId>hibernate-jpamodelgen</artifactId>
margaretha9025d642018-01-19 17:35:22 +0100188 <version>${hibernate.version}</version>
margarethad3c0fc92017-10-25 15:03:32 +0200189 <scope>provided</scope>
190 </dependency>
margaretha9025d642018-01-19 17:35:22 +0100191 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100192 <groupId>org.hibernate</groupId>
193 <artifactId>hibernate-java8</artifactId>
194 <version>${hibernate.version}</version>
margarethae6c711b2018-02-06 21:55:04 +0100195 </dependency>
196 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100197 <groupId>org.javassist</groupId>
198 <artifactId>javassist</artifactId>
199 <version>3.22.0-GA</version>
margaretha9025d642018-01-19 17:35:22 +0100200 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200201
margaretha318fec32017-10-24 12:11:58 +0200202 <!-- MySql -->
203 <dependency>
204 <groupId>mysql</groupId>
205 <artifactId>mysql-connector-java</artifactId>
margaretha2c019fa2018-02-01 19:50:51 +0100206 <version>6.0.6</version>
margaretha318fec32017-10-24 12:11:58 +0200207 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200208
209 <!-- Jersey -->
210 <dependency>
211 <groupId>com.sun.jersey.jersey-test-framework</groupId>
212 <artifactId>jersey-test-framework-core</artifactId>
213 <version>${jersey.version}</version>
214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>com.sun.jersey.jersey-test-framework</groupId>
218 <artifactId>jersey-test-framework-grizzly</artifactId>
219 <version>${jersey.version}</version>
220 <scope>test</scope>
221 </dependency>
margaretha7f0a4d42018-02-20 19:16:44 +0100222 <dependency>
223 <groupId>com.sun.jersey</groupId>
224 <artifactId>jersey-json</artifactId>
225 <version>${jersey.version}</version>
226 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200227
228 <!-- Spring -->
margaretha54134902017-09-27 18:43:11 +0200229 <dependency>
230 <groupId>org.springframework</groupId>
231 <artifactId>spring-jdbc</artifactId>
232 <version>${spring-framework.version}</version>
233 </dependency>
234 <dependency>
235 <groupId>org.springframework</groupId>
236 <artifactId>spring-tx</artifactId>
237 <version>${spring-framework.version}</version>
238 </dependency>
margaretha2afb97d2017-12-07 19:18:44 +0100239 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100240 <groupId>org.springframework.security</groupId>
241 <artifactId>spring-security-core</artifactId>
242 <version>${spring-security.version}</version>
margaretha2afb97d2017-12-07 19:18:44 +0100243 </dependency>
244 <dependency>
margaretha58e18632018-02-15 13:04:42 +0100245 <groupId>org.springframework.security</groupId>
246 <artifactId>spring-security-web</artifactId>
247 <version>${spring-security.version}</version>
248 </dependency>
249
margaretha58e18632018-02-15 13:04:42 +0100250 <!-- velocity -->
251 <dependency>
252 <groupId>org.apache.velocity</groupId>
253 <artifactId>velocity-engine-core</artifactId>
254 <version>2.0</version>
255 </dependency>
256 <dependency>
257 <groupId>org.apache.velocity</groupId>
258 <artifactId>velocity-tools</artifactId>
259 <version>2.0</version>
260 </dependency>
261 <!-- mail -->
262 <dependency>
263 <groupId>com.sun.mail</groupId>
264 <artifactId>javax.mail</artifactId>
265 <version>1.6.0</version>
266 </dependency>
267 <dependency>
268 <groupId>javax.activation</groupId>
269 <artifactId>activation</artifactId>
270 <version>1.1.1</version>
271 </dependency>
272
273 <dependency>
274 <groupId>javax.servlet</groupId>
275 <artifactId>javax.servlet-api</artifactId>
276 <version>4.0.0</version>
margaretha2afb97d2017-12-07 19:18:44 +0100277 </dependency>
margarethad3c0fc92017-10-25 15:03:32 +0200278
margaretha54134902017-09-27 18:43:11 +0200279 <!-- Flyway -->
280 <dependency>
281 <groupId>org.flywaydb</groupId>
282 <artifactId>flyway-core</artifactId>
283 <version>4.0</version>
284 </dependency>
margarethaac3c4712018-03-08 15:55:54 +0100285
margarethafb027f92018-04-23 20:00:13 +0200286 <!-- OAuth -->
287 <dependency>
288 <groupId>org.apache.oltu.oauth2</groupId>
289 <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
290 <version>1.0.0</version>
291 </dependency>
margarethaf68daa62017-09-21 02:11:24 +0200292 </dependencies>
margaretha58e18632018-02-15 13:04:42 +0100293
margarethaf68daa62017-09-21 02:11:24 +0200294</project>