From cfd4d49a7524278fe426ccc218be0b8413630a6c Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Thu, 8 Apr 2021 15:43:43 +0200 Subject: [PATCH] Run the build task in the Jenkinsfile instead of publishToMavenLocal. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 93a66be..a14a27c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { stage('Build') { steps { echo 'Building..' - sh './gradlew publishToMavenLocal --stacktrace' + sh './gradlew build --stacktrace' } } stage('Deploy') {