Merge branch 'jetty-9.4.x'

This commit is contained in:
Joakim Erdfelt 2016-09-26 09:48:54 -07:00
commit 347223e374
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

@ -19,8 +19,8 @@ node {
try
{
stage 'Compile'
timeout(15) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(15) {
sh "mvn -B clean install -Dtest=None"
}
}
@ -32,8 +32,8 @@ node {
try
{
stage 'Javadoc'
timeout(15) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(15) {
sh "mvn -B javadoc:javadoc"
}
}
@ -45,8 +45,8 @@ node {
try
{
stage 'Test'
timeout(60) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(60) {
// Run test phase / ignore test failures
sh "mvn -B install -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI