From 53569f0951814510ee14d2cab81c7fea4c98e95b Mon Sep 17 00:00:00 2001 From: akastijn Date: Sat, 28 Jun 2025 03:01:02 +0200 Subject: [PATCH] Fix typo in Gradle property name for Nexus credentials in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7bdb82f..60ec1a8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ pipeline { sh ''' set +x chmod +x gradlew - ./gradlew build -PalttdSnapshotUsername=$USERNAME -PalttdSnapshotPass=$PASSWORD + ./gradlew build -PalttdSnapshotUsername=$USERNAME -PalttdSnapshotPassword=$PASSWORD ''' } }