Run the build task in the Jenkinsfile instead of publishToMavenLocal.
This commit is contained in:
parent
4a85c540ea
commit
cfd4d49a75
|
@ -8,7 +8,7 @@ pipeline {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Building..'
|
echo 'Building..'
|
||||||
sh './gradlew publishToMavenLocal --stacktrace'
|
sh './gradlew build --stacktrace'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
|
|
Loading…
Reference in New Issue