Skip to content

Commit 9f99328

Browse files
authored
Merge pull request #147 from OpenLiberty/staging
Merge staging to prod - Version update mp41 (#143)
2 parents b1fb4b3 + 9b9e3ee commit 9f99328

16 files changed

Lines changed: 36 additions & 36 deletions

File tree

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ cd start
9494
mvn clean package
9595
```
9696

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

9999
Next, run the `docker build` commands to build container images for your application:
100100
[role='command']

finish/inventory/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/inventory/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>org.eclipse.microprofile</groupId>
3636
<artifactId>microprofile</artifactId>
37-
<version>4.0.1</version>
37+
<version>4.1</version>
3838
<type>pom</type>
3939
<scope>provided</scope>
4040
</dependency>
@@ -48,19 +48,19 @@
4848
<dependency>
4949
<groupId>org.junit.jupiter</groupId>
5050
<artifactId>junit-jupiter</artifactId>
51-
<version>5.7.1</version>
51+
<version>5.8.1</version>
5252
<scope>test</scope>
5353
</dependency>
5454
<dependency>
5555
<groupId>org.apache.cxf</groupId>
5656
<artifactId>cxf-rt-rs-client</artifactId>
57-
<version>3.4.3</version>
57+
<version>3.4.5</version>
5858
<scope>test</scope>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.cxf</groupId>
6262
<artifactId>cxf-rt-rs-extension-providers</artifactId>
63-
<version>3.4.3</version>
63+
<version>3.4.5</version>
6464
<scope>test</scope>
6565
</dependency>
6666
<dependency>
@@ -77,13 +77,13 @@
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
<!-- Enable Liberty Maven plugin -->
8383
<plugin>
8484
<groupId>io.openliberty.tools</groupId>
8585
<artifactId>liberty-maven-plugin</artifactId>
86-
<version>3.3.4</version>
86+
<version>3.5.1</version>
8787
</plugin>
8888
<!-- Plugin to run unit tests -->
8989
<plugin>

finish/inventory/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>Eclipse MicroProfile</h2>
3434
<div id="technologies">
3535
<p>For more information about the features used in the application, see the Open Liberty documentation:</p>
3636
<ul>
37-
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.0.html">MicroProfile 4.0</a></li>
37+
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.1.html">MicroProfile 4.1</a></li>
3838
<li><a href="https://openliberty.io/docs/ref/feature/#jaxrs-2.1.html">Java RESTful Services 2.1</a></li>
3939
<li><a href="https://openliberty.io/docs/ref/feature/#cdi-2.0.html">Contexts and Dependency Injection 2.0</a></li>
4040
<li><a href="https://openliberty.io/docs/ref/feature/#mpConfig-2.0.html">MicroProfile Config 2.0</a></li>

finish/system/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/system/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@
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>
4040
<!-- For tests -->
4141
<dependency>
4242
<groupId>org.junit.jupiter</groupId>
4343
<artifactId>junit-jupiter</artifactId>
44-
<version>5.7.1</version>
44+
<version>5.8.1</version>
4545
<scope>test</scope>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.apache.cxf</groupId>
4949
<artifactId>cxf-rt-rs-client</artifactId>
50-
<version>3.4.3</version>
50+
<version>3.4.5</version>
5151
<scope>test</scope>
5252
</dependency>
5353
<dependency>
5454
<groupId>org.apache.cxf</groupId>
5555
<artifactId>cxf-rt-rs-extension-providers</artifactId>
56-
<version>3.4.3</version>
56+
<version>3.4.5</version>
5757
<scope>test</scope>
5858
</dependency>
5959
</dependencies>
@@ -64,13 +64,13 @@
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-war-plugin</artifactId>
67-
<version>3.3.1</version>
67+
<version>3.3.2</version>
6868
</plugin>
6969
<!-- Enable Liberty Maven plugin -->
7070
<plugin>
7171
<groupId>io.openliberty.tools</groupId>
7272
<artifactId>liberty-maven-plugin</artifactId>
73-
<version>3.3.4</version>
73+
<version>3.5.1</version>
7474
</plugin>
7575
<!-- Plugin to run unit tests -->
7676
<plugin>

finish/system/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>Eclipse MicroProfile</h2>
3434
<div id="technologies">
3535
<p>For more information about the features used in the application, see the Open Liberty documentation:</p>
3636
<ul>
37-
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.0.html">MicroProfile 4.0</a></li>
37+
<li><a href="https://openliberty.io/docs/ref/feature/#microProfile-4.1.html">MicroProfile 4.1</a></li>
3838
<li><a href="https://openliberty.io/docs/ref/feature/#jaxrs-2.1.html">Java RESTful Services 2.1</a></li>
3939
<li><a href="https://openliberty.io/docs/ref/feature/#cdi-2.0.html">Contexts and Dependency Injection 2.0</a></li>
4040
<li><a href="https://openliberty.io/docs/ref/feature/#mpConfig-2.0.html">MicroProfile Config 2.0</a></li>

scripts/dailyBuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ echo "Testing daily build image"
1414
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>" inventory/pom.xml system/pom.xml
1515
cat inventory/pom.xml system/pom.xml
1616

17-
sed -i "s;FROM openliberty/open-liberty:full-java11-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" inventory/Dockerfile system/Dockerfile
17+
sed -i "s;FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi;FROM $DOCKER_USERNAME/olguides:$BUILD;g" inventory/Dockerfile system/Dockerfile
1818
cat inventory/Dockerfile system/Dockerfile
1919

2020
sudo ../scripts/testApp.sh

scripts/dockerImageTest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ echo "Testing latest OpenLiberty Docker image"
1212
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>" inventory/pom.xml system/pom.xml
1313
cat inventory/pom.xml system/pom.xml
1414

15-
sed -i "s;FROM openliberty/open-liberty:full-java11-openj9-ubi;FROM openliberty/daily:latest;g" inventory/Dockerfile system/Dockerfile
15+
sed -i "s;FROM icr.io/appcafe/open-liberty:full-java11-openj9-ubi;FROM openliberty/daily:latest;g" inventory/Dockerfile system/Dockerfile
1616
cat inventory/Dockerfile system/Dockerfile
1717

1818
docker pull "openliberty/daily:latest"

scripts/testApp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mvn -Dhttp.keepAlive=false \
1919
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
2020
-q package
2121

22-
docker pull openliberty/open-liberty:full-java11-openj9-ubi
22+
docker pull icr.io/appcafe/open-liberty:full-java11-openj9-ubi
2323

2424
docker build -t system:1.0-SNAPSHOT system/.
2525
docker build -t inventory:1.0-SNAPSHOT inventory/.

0 commit comments

Comments
 (0)