From 262f2b4036297fdba421c7cc3d65d55f5f5cc670 Mon Sep 17 00:00:00 2001 From: "Mark S. Lewis" Date: Mon, 8 Sep 2025 22:16:32 +0100 Subject: [PATCH] Use Gradle wrapper in asset-transfer-ledger-queries 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