Skip to content

Commit e31c207

Browse files
author
Tony Fitzgerald
committed
updates to several pom.xml to ensure clean compile when Java 11 used
1 parent 38b5d1a commit e31c207

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

append-char-container-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-war-plugin</artifactId>
38-
<version>3.2.2</version>
38+
<version>3.3.2</version>
3939
<configuration>
4040
<failOnMissingWebXml>false</failOnMissingWebXml>
4141
</configuration>

bit-link-program-sample/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,18 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-compiler-plugin</artifactId>
45-
<version>3.8.1</version>
45+
<version>3.10.1</version>
4646
<configuration>
4747
<source>1.8</source>
4848
<target>1.8</target>
4949
</configuration>
5050
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-war-plugin</artifactId>
54+
<version>3.3.2</version>
55+
</plugin>
56+
5157

5258
<!-- The below bundles the application as a WAR in a CICS bundle and deploys this to CICS using the CICS bundle deployment API.
5359
This is optional and can be removed if you don't wish to deploy the application this way -->

char-link-program-sample/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
<target>1.8</target>
4444
</configuration>
4545
</plugin>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-war-plugin</artifactId>
49+
<version>3.3.2</version>
50+
</plugin>
4651

4752
<!-- The below bundles the application as a WAR in a CICS bundle and deploys this to CICS using the CICS bundle deployment API.
4853
This is optional and can be removed if you don't wish to deploy the application this way -->

cics-java-liberty-restapp/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
<artifactId>javax.ws.rs-api</artifactId>
2828
<version>2.0.1</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>javax.xml.bind</groupId>
32+
<artifactId>jaxb-api</artifactId>
33+
<version>2.3.1</version>
34+
</dependency>
3035

3136
<!-- JCICSX dependency -->
3237
<dependency>
@@ -48,6 +53,11 @@
4853
<target>1.8</target>
4954
</configuration>
5055
</plugin>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-war-plugin</artifactId>
59+
<version>3.3.2</version>
60+
</plugin>
5161

5262
<!-- The below bundles the application as a WAR in a CICS bundle and deploys this to CICS using the CICS bundle deployment API.
5363
This is optional and can be removed if you don't wish to deploy the application this way -->

mockito-testing-containers-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-war-plugin</artifactId>
52-
<version>3.2.2</version>
52+
<version>3.3.2</version>
5353
<configuration>
5454
<failOnMissingWebXml>false</failOnMissingWebXml>
5555
</configuration>

0 commit comments

Comments
 (0)