-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
97 lines (85 loc) · 2.47 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!--
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: BSD-3-Clause
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.java.jsr375</groupId>
<artifactId>javaee-security-examples</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<currentYear>2018</currentYear>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
</dependency>
</dependencies>
<modules>
<module>simple-jaas-example</module>
<module>roles-allowed-and-runas</module>
<module>simple-jaspic-example</module>
<module>rest-basic-example</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<optimize>true</optimize>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- ======================================================= -->
<!-- Maven License Plugin -->
<!-- ======================================================= -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<header>src/license/header.txt</header>
<properties>
<owner>Oracle</owner>
<currentYear>2018</currentYear>
</properties>
<excludes>
<exclude>**/*.adoc</exclude>
<exclude>**/*.launch</exclude>
<exclude>**/*.sh</exclude>
<exclude>**/pom.xml</exclude>
<exclude>**/beans.xml</exclude>
<exclude>**/README</exclude>
<exclude>**/settings.xml</exclude>
<exclude>src/license/**</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
</excludes>
<headerDefinitions>
<headerDefinition>src/license/headers.xml</headerDefinition>
</headerDefinitions>
<mapping>
<java>JAVA_STYLE</java>
</mapping>
</configuration>
</plugin>
</plugins>
</build>
<inceptionYear>2015</inceptionYear>
</project>