Javadoc build doesn't need to be offline

This commit is contained in:
Joakim Erdfelt 2017-08-16 05:05:04 -07:00
parent b7c4e1c7dc
commit 7ac18fc215
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -38,7 +38,7 @@ node {
stage('Javadoc') {
withEnv(mvnEnv) {
timeout(time: 20, unit: 'MINUTES') {
sh "mvn --offline -B javadoc:javadoc"
sh "mvn -B javadoc:javadoc"
}
}
}