mirror of
https://github.com/plexusorg/Plex.git
synced 2024-10-31 17:17:12 +00:00
16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('build') {
|
||
|
steps {
|
||
|
sh './gradlew build javadoc publish --no-daemon'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
post {
|
||
|
always {
|
||
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
||
|
deleteWs()
|
||
|
}
|
||
|
}
|
||
|
}
|