TheBrokenRail
48fef73096
Some checks failed
SorceryCraft/pipeline/head There was a failure building this commit
29 lines
745 B
Groovy
29 lines
745 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'openjdk:8-jdk'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build javadoc publish'
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
|
|
|
|
publishHTML target: [
|
|
allowMissing: false,
|
|
alwaysLinkToLastBuild: false,
|
|
keepAll: false,
|
|
reportDir: 'build/javadoc',
|
|
reportFiles: 'index.html',
|
|
reportName: 'JavaDoc'
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|