Skip to content

Commit b9668b7

Browse files
authored
Revert "Merge staging to prod - Version update (#47)"
1 parent ef64b01 commit b9668b7

File tree

5 files changed

+15
-17
lines changed

5 files changed

+15
-17
lines changed

Diff for: README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, 2021 IBM Corporation and others.
1+
// Copyright (c) 2020 IBM Corporation and others.
22
// Licensed under Creative Commons Attribution-NoDerivatives
33
// 4.0 International (CC BY-ND 4.0)
44
// https://creativecommons.org/licenses/by-nd/4.0/
@@ -97,7 +97,7 @@ the artist JSON is available to you.
9797
Navigate to the `start` directory to begin.
9898

9999
[role='command']
100-
include::{common-includes}/devmode-lmp33-start.adoc[]
100+
include::{common-includes}/devmode-start.adoc[]
101101

102102
After you start the service, you can find your artist JSON at the
103103
http://localhost:9080/artists[http://localhost:9080/artists^] URL.

Diff for: finish/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>4.0.1</version>
32+
<version>3.3</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.7.1</version>
41+
<version>5.6.2</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>
@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>io.openliberty.tools</groupId>
5757
<artifactId>liberty-maven-plugin</artifactId>
58-
<version>3.3.4</version>
58+
<version>3.2.3</version>
5959
</plugin>
6060
<!-- Frontend resources -->
6161
<!-- tag::frontend-plugin[] -->
@@ -123,7 +123,7 @@
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
125125
<artifactId>maven-resources-plugin</artifactId>
126-
<version>3.2.0</version>
126+
<version>3.1.0</version>
127127
<executions>
128128
<execution>
129129
<id>Copy frontend build to target</id>

Diff for: scripts/dailyBuild.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/bin/bash
2-
while getopts t:d: flag; do
2+
while getopts t:d:b:u: flag; do
33
case "${flag}" in
44
t) DATE="${OPTARG}" ;;
55
d) DRIVER="${OPTARG}" ;;
6-
*) echo "Invalid option";;
6+
b) BUILD="${OPTARG}" ;;
7+
u) DOCKER_USERNAME="${OPTARG}" ;;
78
esac
89
done
910

10-
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
11+
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
1112
cat pom.xml
1213

1314
../scripts/testApp.sh

Diff for: scripts/testApp.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ set -euxo pipefail
1414
# liberty:create - Create a Liberty server.
1515
# liberty:install-feature - Install a feature packaged as a Subsystem Archive (esa) to the Liberty runtime.
1616
# liberty:deploy - Copy applications to the Liberty server's dropins or apps directory.
17-
mvn -Dhttp.keepAlive=false \
18-
-Dmaven.wagon.http.pool=false \
19-
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
20-
-q clean package liberty:create liberty:install-feature liberty:deploy
17+
mvn -q clean package liberty:create liberty:install-feature liberty:deploy
2118

2219
## Run the tests
2320
# These commands are separated because if one of the commands fail, the test script will fail and exit.

Diff for: start/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>4.0.1</version>
32+
<version>3.3</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.7.1</version>
41+
<version>5.6.2</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>
@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>io.openliberty.tools</groupId>
5757
<artifactId>liberty-maven-plugin</artifactId>
58-
<version>3.3.4</version>
58+
<version>3.2.3</version>
5959
</plugin>
6060
<!-- Frontend resources -->
6161
<plugin>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-resources-plugin</artifactId>
103-
<version>3.2.0</version>
103+
<version>3.1.0</version>
104104
<executions>
105105
<execution>
106106
<id>Copy frontend build to target</id>

0 commit comments

Comments
 (0)