From 97c7b4958bcf8fc723b80560267c27edaceb5856 Mon Sep 17 00:00:00 2001 From: akastijn Date: Sat, 28 Jun 2025 04:43:19 +0200 Subject: [PATCH] Remove Nexus credentials from Jenkinsfile and update Gradle command --- Jenkinsfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d427916..ff5af69 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,12 +1,9 @@ pipeline { agent any - environment { - NEXUS_CREDS = credentials('alttd-snapshot-user') - } stages { stage('Gradle') { steps { - sh './gradlew shadowJar -x test -PalttdSnapshotUsername=$NEXUS_CREDS_USR -PalttdSnapshotPassword=$NEXUS_CREDS_PSW' + sh './gradlew build } } stage('Archive') {