Skip to content

Commit c5c23ae

Browse files
author
Eugen Paraschiv
committed
setting war plugin version
1 parent b44883b commit c5c23ae

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

java-ee-8-security-api/pom.xml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,27 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
76
<groupId>com.baeldung</groupId>
87
<artifactId>java-ee-8-security-api</artifactId>
98
<version>1.0-SNAPSHOT</version>
109
<packaging>pom</packaging>
1110

12-
<modules>
13-
<module>app-auth-basic-store-db</module>
14-
<module>app-auth-form-store-ldap</module>
15-
<module>app-auth-custom-form-store-custom</module>
16-
<module>app-auth-custom-no-store</module>
17-
</modules>
18-
1911
<dependencies>
12+
2013
<dependency>
2114
<groupId>javax</groupId>
2215
<artifactId>javaee-web-api</artifactId>
2316
<version>${javaee-version}</version>
2417
<scope>provided</scope>
2518
</dependency>
19+
2620
</dependencies>
2721

2822
<build>
2923
<plugins>
3024
<plugin>
3125
<artifactId>maven-war-plugin</artifactId>
26+
<version>${maven-war-plugin.version}</version>
3227
<configuration>
3328
<failOnMissingWebXml>false</failOnMissingWebXml>
3429
<packagingExcludes>pom.xml</packagingExcludes>
@@ -69,6 +64,15 @@
6964
<liberty-maven-plugin.version>2.3</liberty-maven-plugin.version>
7065
<openliberty-runtime.version>18.0.0.1</openliberty-runtime.version>
7166
<h2-version>1.4.197</h2-version>
67+
68+
<maven-war-plugin.version>3.2.2</maven-war-plugin.version>
7269
</properties>
7370

71+
<modules>
72+
<module>app-auth-basic-store-db</module>
73+
<module>app-auth-form-store-ldap</module>
74+
<module>app-auth-custom-form-store-custom</module>
75+
<module>app-auth-custom-no-store</module>
76+
</modules>
77+
7478
</project>

0 commit comments

Comments
 (0)