mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
32 lines
No EOL
477 B
Groovy
32 lines
No EOL
477 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Clean') {
|
|
steps {
|
|
sh './gradlew clean --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Upload Artifacts') {
|
|
steps {
|
|
archiveArtifacts 'build/libs/**.jar'
|
|
}
|
|
}
|
|
|
|
stage('Publish') {
|
|
steps {
|
|
sh './gradlew publish --no-daemon'
|
|
}
|
|
}
|
|
|
|
}
|
|
environment {
|
|
local_maven = '/var/www/maven'
|
|
}
|
|
} |