This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/Jenkinsfile

29 lines
750 B
Plaintext
Raw Normal View History

2020-03-01 18:19:59 +00:00
pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
2020-05-02 18:42:16 +00:00
sh './gradlew build javadoc publish'
2020-03-01 18:19:59 +00:00
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
2020-05-02 18:42:16 +00:00
publishHTML target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: false,
2020-05-02 18:54:43 +00:00
reportDir: 'build/docs/javadoc',
2020-05-02 18:42:16 +00:00
reportFiles: 'index.html',
reportName: 'JavaDoc'
]
2020-03-01 18:19:59 +00:00
}
}
}
}
}