Skip to content

Commit 86ff5c4

Browse files
authored
Version update mp41 (#261)
* update versions * update to use LMP 3.5.1
1 parent 0d43de3 commit 86ff5c4

8 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ Run the `mvn package` command from the `start` directory so that the `.war` file
399399
mvn package
400400
```
401401

402-
include::{common-includes}/ol-full-docker-pull.adoc[]
402+
include::{common-includes}/ol-icr-full-docker-pull.adoc[]
403403

404404
To build and containerize the application, run the
405405
following Docker build command in the `start` directory:

finish/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openliberty/open-liberty:full-java11-openj9-ubi
1+
FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi
22

33
ARG VERSION=1.0
44
ARG REVISION=SNAPSHOT

finish/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@
3030
<dependency>
3131
<groupId>org.eclipse.microprofile</groupId>
3232
<artifactId>microprofile</artifactId>
33-
<version>4.0.1</version>
33+
<version>4.1</version>
3434
<type>pom</type>
3535
<scope>provided</scope>
3636
</dependency>
3737
<!-- For tests -->
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.7.1</version>
41+
<version>5.8.1</version>
4242
<scope>test</scope>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.apache.cxf</groupId>
4646
<artifactId>cxf-rt-rs-client</artifactId>
47-
<version>3.4.3</version>
47+
<version>3.4.5</version>
4848
<scope>test</scope>
4949
</dependency>
5050
<dependency>
5151
<groupId>org.apache.cxf</groupId>
5252
<artifactId>cxf-rt-rs-extension-providers</artifactId>
53-
<version>3.4.3</version>
53+
<version>3.4.5</version>
5454
<scope>test</scope>
5555
</dependency>
5656
<dependency>
@@ -69,13 +69,13 @@
6969
<plugin>
7070
<groupId>io.openliberty.tools</groupId>
7171
<artifactId>liberty-maven-plugin</artifactId>
72-
<version>3.3.4</version>
72+
<version>3.5.1</version>
7373
</plugin>
7474
<!-- end::libertyMavenPlugin[] -->
7575
<plugin>
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-war-plugin</artifactId>
78-
<version>3.3.1</version>
78+
<version>3.3.2</version>
7979
</plugin>
8080
<plugin>
8181
<groupId>org.apache.maven.plugins</groupId>

finish/src/main/liberty/config/server.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<feature>cdi-2.0</feature>
77
<feature>mpMetrics-3.0</feature>
88
<!-- tag::mpHealth[] -->
9-
<feature>mpHealth-3.0</feature>
9+
<feature>mpHealth-3.1</feature>
1010
<!-- end::mpHealth[] -->
1111
<feature>mpConfig-2.0</feature>
1212
</featureManager>

scripts/dailyBuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "Testing daily build image"
1515
sed -i "\#<artifactId>liberty-maven-plugin</artifactId>#a<configuration><install><runtimeUrl>https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/nightly/$DATE/$DRIVER</runtimeUrl></install></configuration>" pom.xml
1616
cat pom.xml
1717

18-
sed -i "s;FROM openliberty/open-liberty:kernel-java8-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" Dockerfile
18+
sed -i "s;FROM icr.io/appcafe/open-liberty:kernel-java8-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" Dockerfile
1919
cat Dockerfile
2020

2121
../scripts/testApp.sh

staging/server.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<feature>cdi-2.0</feature>
77
<feature>mpMetrics-3.0</feature>
88
<!-- tag::mpHealth[] -->
9-
<feature>mpHealth-3.0</feature>
9+
<feature>mpHealth-3.1</feature>
1010
<!-- end::mpHealth[] -->
1111
<feature>mpConfig-2.0</feature>
1212
</featureManager>

start/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openliberty/open-liberty:full-java11-openj9-ubi
1+
FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi
22

33
ARG VERSION=1.0
44
ARG REVISION=SNAPSHOT

start/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@
3030
<dependency>
3131
<groupId>org.eclipse.microprofile</groupId>
3232
<artifactId>microprofile</artifactId>
33-
<version>4.0.1</version>
33+
<version>4.1</version>
3434
<type>pom</type>
3535
<scope>provided</scope>
3636
</dependency>
3737
<!-- For tests -->
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.7.1</version>
41+
<version>5.8.1</version>
4242
<scope>test</scope>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.apache.cxf</groupId>
4646
<artifactId>cxf-rt-rs-client</artifactId>
47-
<version>3.4.3</version>
47+
<version>3.4.5</version>
4848
<scope>test</scope>
4949
</dependency>
5050
<dependency>
5151
<groupId>org.apache.cxf</groupId>
5252
<artifactId>cxf-rt-rs-extension-providers</artifactId>
53-
<version>3.4.3</version>
53+
<version>3.4.5</version>
5454
<scope>test</scope>
5555
</dependency>
5656
<dependency>
@@ -68,12 +68,12 @@
6868
<plugin>
6969
<groupId>io.openliberty.tools</groupId>
7070
<artifactId>liberty-maven-plugin</artifactId>
71-
<version>3.3.4</version>
71+
<version>3.5.1</version>
7272
</plugin>
7373
<plugin>
7474
<groupId>org.apache.maven.plugins</groupId>
7575
<artifactId>maven-war-plugin</artifactId>
76-
<version>3.3.1</version>
76+
<version>3.3.2</version>
7777
</plugin>
7878
<plugin>
7979
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)