Run the build task in the Jenkinsfile instead of publishToMavenLocal.

This commit is contained in:
Username404-59 2021-04-08 15:43:43 +02:00
parent 4a85c540ea
commit cfd4d49a75
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -8,7 +8,7 @@ pipeline {
stage('Build') {
steps {
echo 'Building..'
sh './gradlew publishToMavenLocal --stacktrace'
sh './gradlew build --stacktrace'
}
}
stage('Deploy') {