Skip to content

Commit 4abafd9

Browse files
committed
Always Download New Snapshots
This change ensures that new Reactor Snapshots are always downloaded. This change should not make it into the mainline code, but is useful for testing the snapshots for the Reactor team.
1 parent 184aafa commit 4abafd9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ set -e -u
55
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
66

77
cd cf-java-client
8-
./mvnw -q -Dmaven.test.skip=true deploy
8+
./mvnw -U -q -Dmaven.test.skip=true deploy # TODO: Remove -U
99
cp target/build-info.json ../build-info/build-info.json

ci/integration-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -e -u
55
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
66

77
cd cf-java-client
8-
./mvnw -q -P integration-test test
8+
./mvnw -U -q -P integration-test test # TODO: Remove -U

ci/unit-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -e -u
55
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
66

77
cd cf-java-client
8-
./mvnw -q package
8+
./mvnw -U -q package # TODO: Remove -U

0 commit comments

Comments
 (0)