Skip to content

Commit 4dd31d2

Browse files
authored
Merge pull request #146 from OpenLiberty/staging
Merge staging to prod - Version update mp41 (#145)
2 parents f4b2ec9 + def4931 commit 4dd31d2

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The [hotspot=from file=0]`FROM` instruction initializes a new build stage
147147
and indicates the parent image from which your image is built.
148148
If you don't need a parent image, then use `FROM scratch`, which makes your image a base image.
149149

150-
In this case, you’re using the `openliberty/open-liberty:full-java11-openj9-ubi` image as your parent image,
150+
In this case, you’re using the `icr.io/appcafe/open-liberty:full-java11-openj9-ubi` image as your parent image,
151151
which comes with the latest Open Liberty runtime.
152152

153153
The [hotspot=copy file=0]`COPY` instructions are structured as `COPY`

finish/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Start with OL runtime.
22
# tag::from[]
3-
FROM openliberty/open-liberty:full-java11-openj9-ubi
3+
FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi
44
# end::from[]
55

66
ARG VERSION=1.0

finish/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ xsi:schemaLocation=
3333
<dependency>
3434
<groupId>org.eclipse.microprofile</groupId>
3535
<artifactId>microprofile</artifactId>
36-
<version>4.0.1</version>
36+
<version>4.1</version>
3737
<type>pom</type>
3838
<scope>provided</scope>
3939
</dependency>
@@ -42,7 +42,7 @@ xsi:schemaLocation=
4242
<dependency>
4343
<groupId>org.junit.jupiter</groupId>
4444
<artifactId>junit-jupiter</artifactId>
45-
<version>5.7.1</version>
45+
<version>5.8.1</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>
@@ -77,14 +77,14 @@ xsi:schemaLocation=
7777
<plugin>
7878
<groupId>org.apache.maven.plugins</groupId>
7979
<artifactId>maven-war-plugin</artifactId>
80-
<version>3.3.1</version>
80+
<version>3.3.2</version>
8181
</plugin>
8282

8383
<!-- Enable liberty-maven plugin -->
8484
<plugin>
8585
<groupId>io.openliberty.tools</groupId>
8686
<artifactId>liberty-maven-plugin</artifactId>
87-
<version>3.3.4</version>
87+
<version>3.5.1</version>
8888
</plugin>
8989

9090
<!-- Plugin to run functional tests -->

finish/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2>Eclipse MicroProfile</h2>
3030
<p>
3131
For more information about the features used in this application, see the Open Liberty documentation:
3232
<ul>
33-
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.0.html" target="_blank" rel="noopener noreferrer">MicroProfile 4.0</a></li>
33+
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.1.html" target="_blank" rel="noopener noreferrer">MicroProfile 4.1</a></li>
3434
<li><a href="https://openliberty.io/docs/ref/feature/#jaxrs-2.1.html" target="_blank" rel="noopener noreferrer">Java RESTful Services 2.1</a></li>
3535
<li><a href="https://openliberty.io/docs/ref/feature/#jsonp-1.1.html" target="_blank" rel="noopener noreferrer">JavaScript Object Notation Processing 1.1</a></li>
3636
</ul>

scripts/dailyBuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "Testing daily OpenLiberty 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:full-java11-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" Dockerfile
18+
sed -i "s;FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" Dockerfile
1919
cat Dockerfile
2020

2121
docker pull "$DOCKER_USERNAME""/olguides:""$BUILD"

start/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ xsi:schemaLocation=
3333
<dependency>
3434
<groupId>org.eclipse.microprofile</groupId>
3535
<artifactId>microprofile</artifactId>
36-
<version>4.0.1</version>
36+
<version>4.1</version>
3737
<type>pom</type>
3838
<scope>provided</scope>
3939
</dependency>
@@ -42,7 +42,7 @@ xsi:schemaLocation=
4242
<dependency>
4343
<groupId>org.junit.jupiter</groupId>
4444
<artifactId>junit-jupiter</artifactId>
45-
<version>5.7.1</version>
45+
<version>5.8.1</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>
@@ -77,14 +77,14 @@ xsi:schemaLocation=
7777
<plugin>
7878
<groupId>org.apache.maven.plugins</groupId>
7979
<artifactId>maven-war-plugin</artifactId>
80-
<version>3.3.1</version>
80+
<version>3.3.2</version>
8181
</plugin>
8282

8383
<!-- Enable liberty-maven plugin -->
8484
<plugin>
8585
<groupId>io.openliberty.tools</groupId>
8686
<artifactId>liberty-maven-plugin</artifactId>
87-
<version>3.3.4</version>
87+
<version>3.5.1</version>
8888
</plugin>
8989

9090
<!-- Plugin to run functional tests -->

start/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2>Eclipse MicroProfile</h2>
3030
<p>
3131
For more information about the features used in this application, see the Open Liberty documentation:
3232
<ul>
33-
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.0.html" target="_blank" rel="noopener noreferrer">MicroProfile 4.0</a></li>
33+
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.1.html" target="_blank" rel="noopener noreferrer">MicroProfile 4.1</a></li>
3434
<li><a href="https://openliberty.io/docs/ref/feature/#jaxrs-2.1.html" target="_blank" rel="noopener noreferrer">Java RESTful Services 2.1</a></li>
3535
<li><a href="https://openliberty.io/docs/ref/feature/#jsonp-1.1.html" target="_blank" rel="noopener noreferrer">JavaScript Object Notation Processing 1.1</a></li>
3636
</ul>

0 commit comments

Comments
 (0)