margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 1 | <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> |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 6 | <version>0.60.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 7 | <properties> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 8 | <java.version>1.8</java.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 9 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 10 | <spring-framework.version>5.0.3.RELEASE</spring-framework.version> |
| 11 | <spring-security.version>4.2.3.RELEASE</spring-security.version> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 12 | <jetty.version>9.4.8.v20171121</jetty.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 13 | <jersey.version>1.19.4</jersey.version> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 14 | <hibernate.version>5.1.11.Final</hibernate.version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 15 | </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> |
margaretha | 7f0a4d4 | 2018-02-20 19:16:44 +0100 | [diff] [blame] | 28 | <include>**/*.vm</include> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 29 | </includes> |
| 30 | </resource> |
| 31 | </resources> |
| 32 | <testResources> |
| 33 | <testResource> |
| 34 | <directory>src/test/resources</directory> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 35 | <!-- <filtering>true</filtering> <includes> <include>**/*.key</include> |
| 36 | <include>**/*.token</include> <include>**/*.xml</include> <include>**/*.conf</include> |
| 37 | <include>**/*.info</include> <include>**/*.properties</include> </includes> --> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 38 | </testResource> |
| 39 | <testResource> |
| 40 | <directory>src/main/resources</directory> |
| 41 | <filtering>true</filtering> |
| 42 | <includes> |
| 43 | <include>**/*.info</include> |
| 44 | <include>**/*.properties</include> |
| 45 | </includes> |
| 46 | </testResource> |
| 47 | </testResources> |
| 48 | <plugins> |
| 49 | <!-- Formatter plugin for Eclipse based coding conventions http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html --> |
| 50 | <plugin> |
| 51 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 52 | <artifactId>maven-java-formatter-plugin</artifactId> |
| 53 | <version>0.4</version> |
| 54 | <configuration> |
| 55 | <configFile>${project.basedir}/Format.xml</configFile> |
| 56 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
| 57 | <compilerSource>${java.version}</compilerSource> |
| 58 | <compilerCompliance>${java.version}</compilerCompliance> |
| 59 | <compilerTargetPlatform>${java.version}</compilerTargetPlatform> |
| 60 | </configuration> |
| 61 | <!-- <executions> <execution> <goals> <goal>format</goal> </goals> </execution> |
| 62 | </executions> --> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-compiler-plugin</artifactId> |
margaretha | fc7d777 | 2018-01-16 17:48:17 +0100 | [diff] [blame] | 67 | <version>3.7.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 68 | <configuration> |
| 69 | <compilerVersion>${java.version}</compilerVersion> |
| 70 | <source>${java.version}</source> |
| 71 | <target>${java.version}</target> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 72 | <!-- <compilerArguments> <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 73 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
| 74 | </compilerArguments> --> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 75 | <processors> |
margaretha | fc7d777 | 2018-01-16 17:48:17 +0100 | [diff] [blame] | 76 | <processor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor> |
| 77 | <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 78 | </processors> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 79 | </configuration> |
| 80 | </plugin> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 81 | <plugin> |
| 82 | <groupId>org.apache.maven.plugins</groupId> |
| 83 | <artifactId>maven-surefire-plugin</artifactId> |
margaretha | a86b141 | 2018-02-21 20:40:35 +0100 | [diff] [blame] | 84 | <version>2.20.1</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 85 | <configuration> |
| 86 | <reuseForks>false</reuseForks> |
| 87 | <forkCount>2</forkCount> |
margaretha | efc18a4 | 2018-03-01 16:01:42 +0100 | [diff] [blame] | 88 | <threadCount>4</threadCount> |
| 89 | <argLine>-Xmx512m -XX:MaxPermSize=256m</argLine> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 90 | <excludes> |
margaretha | dfecb4b | 2017-12-12 19:32:30 +0100 | [diff] [blame] | 91 | <exclude>de/ids_mannheim/korap/authentication/*.java</exclude> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 92 | </excludes> |
| 93 | <includes> |
| 94 | <include>de/ids_mannheim/korap/**/*.java</include> |
| 95 | </includes> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | <plugin> |
| 99 | <artifactId>maven-shade-plugin</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 100 | <version>3.1.0</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 101 | <executions> |
| 102 | <!-- option 1 --> |
| 103 | <execution> |
| 104 | <id>full</id> |
| 105 | <phase>package</phase> |
| 106 | <goals> |
| 107 | <goal>shade</goal> |
| 108 | </goals> |
| 109 | <configuration> |
margaretha | ea68a0a | 2017-09-21 03:09:49 +0200 | [diff] [blame] | 110 | <finalName>Kustvakt-full-${project.version}</finalName> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 111 | <transformers> |
| 112 | <transformer |
| 113 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 114 | <mainClass> |
| 115 | de.ids_mannheim.korap.server.KustvaktServer |
| 116 | </mainClass> |
| 117 | </transformer> |
| 118 | <transformer |
| 119 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 120 | <resource>META-INF/spring.handlers |
| 121 | </resource> |
| 122 | </transformer> |
| 123 | <transformer |
| 124 | implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
| 125 | <resource>META-INF/spring.schemas |
| 126 | </resource> |
| 127 | </transformer> |
| 128 | </transformers> |
| 129 | <!-- Additional configuration. apparently there is a securityException --> |
| 130 | <filters> |
| 131 | <filter> |
| 132 | <artifact>*:*</artifact> |
| 133 | <excludes> |
| 134 | <exclude>META-INF/*.SF</exclude> |
| 135 | <exclude>META-INF/*.DSA |
| 136 | </exclude> |
| 137 | <exclude>META-INF/*.RSA |
| 138 | </exclude> |
| 139 | </excludes> |
| 140 | </filter> |
| 141 | </filters> |
| 142 | </configuration> |
| 143 | </execution> |
| 144 | </executions> |
| 145 | </plugin> |
| 146 | |
| 147 | </plugins> |
| 148 | </build> |
| 149 | |
| 150 | <dependencies> |
| 151 | <dependency> |
| 152 | <groupId>de.ids_mannheim.korap</groupId> |
| 153 | <artifactId>Kustvakt-core</artifactId> |
margaretha | 5225ed0 | 2018-06-25 18:38:40 +0200 | [diff] [blame] | 154 | <version>0.60.4</version> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 155 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 156 | <!-- LDAP --> |
| 157 | <dependency> |
| 158 | <groupId>com.novell.ldap</groupId> |
| 159 | <artifactId>jldap</artifactId> |
| 160 | <version>4.3</version> |
| 161 | </dependency> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 162 | <dependency> |
| 163 | <groupId>com.unboundid</groupId> |
| 164 | <artifactId>unboundid-ldapsdk</artifactId> |
| 165 | <version>3.2.1</version> |
| 166 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 167 | |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 168 | <!-- Hibernate --> |
| 169 | <dependency> |
| 170 | <groupId>org.hibernate</groupId> |
| 171 | <artifactId>hibernate-entitymanager</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 172 | <version>${hibernate.version}</version> |
| 173 | <exclusions> |
| 174 | <exclusion> |
| 175 | <groupId>org.javassist</groupId> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 176 | <artifactId>javassist</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 177 | </exclusion> |
| 178 | </exclusions> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 179 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 180 | <dependency> |
| 181 | <groupId>org.hibernate</groupId> |
| 182 | <artifactId>hibernate-jpamodelgen</artifactId> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 183 | <version>${hibernate.version}</version> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 184 | <scope>provided</scope> |
| 185 | </dependency> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 186 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 187 | <groupId>org.hibernate</groupId> |
| 188 | <artifactId>hibernate-java8</artifactId> |
| 189 | <version>${hibernate.version}</version> |
margaretha | e6c711b | 2018-02-06 21:55:04 +0100 | [diff] [blame] | 190 | </dependency> |
| 191 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 192 | <groupId>org.javassist</groupId> |
| 193 | <artifactId>javassist</artifactId> |
| 194 | <version>3.22.0-GA</version> |
margaretha | 9025d64 | 2018-01-19 17:35:22 +0100 | [diff] [blame] | 195 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 196 | |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 197 | <!-- MySql --> |
| 198 | <dependency> |
| 199 | <groupId>mysql</groupId> |
| 200 | <artifactId>mysql-connector-java</artifactId> |
margaretha | 2c019fa | 2018-02-01 19:50:51 +0100 | [diff] [blame] | 201 | <version>6.0.6</version> |
margaretha | 318fec3 | 2017-10-24 12:11:58 +0200 | [diff] [blame] | 202 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 203 | |
| 204 | <!-- Jersey --> |
| 205 | <dependency> |
| 206 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 207 | <artifactId>jersey-test-framework-core</artifactId> |
| 208 | <version>${jersey.version}</version> |
| 209 | <scope>test</scope> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 213 | <artifactId>jersey-test-framework-grizzly</artifactId> |
| 214 | <version>${jersey.version}</version> |
| 215 | <scope>test</scope> |
| 216 | </dependency> |
margaretha | 7f0a4d4 | 2018-02-20 19:16:44 +0100 | [diff] [blame] | 217 | <dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 218 | <groupId>com.sun.jersey</groupId> |
| 219 | <artifactId>jersey-json</artifactId> |
| 220 | <version>${jersey.version}</version> |
margaretha | 7f0a4d4 | 2018-02-20 19:16:44 +0100 | [diff] [blame] | 221 | </dependency> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 222 | |
| 223 | <!-- Spring --> |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 224 | <dependency> |
| 225 | <groupId>org.springframework</groupId> |
| 226 | <artifactId>spring-jdbc</artifactId> |
| 227 | <version>${spring-framework.version}</version> |
| 228 | </dependency> |
| 229 | <dependency> |
| 230 | <groupId>org.springframework</groupId> |
| 231 | <artifactId>spring-tx</artifactId> |
| 232 | <version>${spring-framework.version}</version> |
| 233 | </dependency> |
margaretha | 2afb97d | 2017-12-07 19:18:44 +0100 | [diff] [blame] | 234 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 235 | <groupId>org.springframework.security</groupId> |
| 236 | <artifactId>spring-security-core</artifactId> |
| 237 | <version>${spring-security.version}</version> |
margaretha | 2afb97d | 2017-12-07 19:18:44 +0100 | [diff] [blame] | 238 | </dependency> |
| 239 | <dependency> |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 240 | <groupId>org.springframework.security</groupId> |
| 241 | <artifactId>spring-security-web</artifactId> |
| 242 | <version>${spring-security.version}</version> |
| 243 | </dependency> |
| 244 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 245 | <!-- velocity --> |
| 246 | <dependency> |
| 247 | <groupId>org.apache.velocity</groupId> |
| 248 | <artifactId>velocity-engine-core</artifactId> |
| 249 | <version>2.0</version> |
| 250 | </dependency> |
| 251 | <dependency> |
| 252 | <groupId>org.apache.velocity</groupId> |
| 253 | <artifactId>velocity-tools</artifactId> |
| 254 | <version>2.0</version> |
| 255 | </dependency> |
| 256 | <!-- mail --> |
| 257 | <dependency> |
| 258 | <groupId>com.sun.mail</groupId> |
| 259 | <artifactId>javax.mail</artifactId> |
| 260 | <version>1.6.0</version> |
| 261 | </dependency> |
| 262 | <dependency> |
| 263 | <groupId>javax.activation</groupId> |
| 264 | <artifactId>activation</artifactId> |
| 265 | <version>1.1.1</version> |
| 266 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 267 | |
margaretha | 58e1863 | 2018-02-15 13:04:42 +0100 | [diff] [blame] | 268 | <dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 269 | <groupId>javax.servlet</groupId> |
| 270 | <artifactId>javax.servlet-api</artifactId> |
| 271 | <version>4.0.0</version> |
margaretha | 2afb97d | 2017-12-07 19:18:44 +0100 | [diff] [blame] | 272 | </dependency> |
margaretha | d3c0fc9 | 2017-10-25 15:03:32 +0200 | [diff] [blame] | 273 | |
margaretha | 5413490 | 2017-09-27 18:43:11 +0200 | [diff] [blame] | 274 | <!-- Flyway --> |
| 275 | <dependency> |
| 276 | <groupId>org.flywaydb</groupId> |
| 277 | <artifactId>flyway-core</artifactId> |
| 278 | <version>4.0</version> |
| 279 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 280 | |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 281 | <!-- OAuth --> |
| 282 | <dependency> |
| 283 | <groupId>org.apache.oltu.oauth2</groupId> |
| 284 | <artifactId>org.apache.oltu.oauth2.authzserver</artifactId> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame^] | 285 | <version>1.0.2</version> |
margaretha | fb027f9 | 2018-04-23 20:00:13 +0200 | [diff] [blame] | 286 | </dependency> |
margaretha | e4034a8 | 2018-07-02 14:46:59 +0200 | [diff] [blame^] | 287 | <dependency> |
| 288 | <groupId>org.apache.oltu.oauth2</groupId> |
| 289 | <artifactId>org.apache.oltu.oauth2.client</artifactId> |
| 290 | <version>1.0.2</version> |
| 291 | </dependency> |
| 292 | <!-- <dependency> |
| 293 | <groupId>org.apache.oltu.oauth2</groupId> |
| 294 | <artifactId>org.apache.oltu.oauth2.dynamicreg.client</artifactId> |
| 295 | <version>1.0.2</version> |
| 296 | </dependency> --> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 297 | <!-- JWT --> |
| 298 | <dependency> |
| 299 | <groupId>com.nimbusds</groupId> |
| 300 | <artifactId>nimbus-jose-jwt</artifactId> |
| 301 | <version>5.10</version> |
| 302 | </dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 303 | |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 304 | <!-- OpenId --> |
| 305 | <dependency> |
margaretha | 9c78e1a | 2018-06-27 14:12:35 +0200 | [diff] [blame] | 306 | <groupId>com.nimbusds</groupId> |
| 307 | <artifactId>oauth2-oidc-sdk</artifactId> |
| 308 | <version>5.62</version> |
margaretha | ec247dd | 2018-06-12 21:55:46 +0200 | [diff] [blame] | 309 | </dependency> |
margaretha | 235a680 | 2018-06-06 19:21:53 +0200 | [diff] [blame] | 310 | </dependencies> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 311 | </project> |