From 1a0afd858d87cfeb897ed2e467b4bd8bfd80ae6c Mon Sep 17 00:00:00 2001 From: "Mark S. Lewis" Date: Tue, 9 Sep 2025 02:08:28 +0100 Subject: [PATCH] Use Gradle wrapper in asset-transfer-ledger-queries (#1349) The CI script invoked Gradle directly, which could picker newer Gradle versions not compatible with the build definition. This change uses the Gradle wrapper included in the client application sample. Signed-off-by: Mark S. Lewis --- ci/scripts/run-test-network-ledger.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/run-test-network-ledger.sh b/ci/scripts/run-test-network-ledger.sh index 91919c49..64b435bb 100755 --- a/ci/scripts/run-test-network-ledger.sh +++ b/ci/scripts/run-test-network-ledger.sh @@ -28,7 +28,7 @@ createNetwork print "Initializing Java application" pushd ../asset-transfer-ledger-queries/application-java print "Executing Gradle Run" -gradle run +./gradlew run popd stopNetwork