This is an automated email from the ASF dual-hosted git repository.
olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git
The following commit(s) were added to refs/heads/master by this push:
new 8269cb3 add jdk11 build
8269cb3 is described below
commit 8269cb3c3e4d9beb230fe77f2fa1e14557d98c77
Author: olivier lamy <[email protected]>
AuthorDate: Mon Dec 31 18:12:42 2018 +1000
add jdk11 build
Signed-off-by: olivier lamy <[email protected]>
---
Jenkinsfile | 19 +++++++------------
1 file changed, 7 insertions(+), 12 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 7701fc6..e648396 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,7 +46,7 @@ pipeline {
}
stages {
- stage( 'BuildAndDeploy-JDK8' ) {
+ stage( 'JDK8' ) {
steps {
script{
if (env.BRANCH_NAME == 'master')
@@ -60,17 +60,12 @@ pipeline {
}
}
}
-// stage('JDK11') {
-// steps {
-// ws("${env.JOB_NAME}-JDK11") {
-// checkout scm
-// timeout(120) {
-// mavenBuild(buildJdk11,"clean install -U
-fae",
-// [junitPublisher(disabled: false,
ignoreAttachments: false)])
-// }
-// }
-// }
-// }
+ stage('JDK11') {
+ steps {
+ mavenBuild(buildJdk11,"clean install -U -fae -T3",[])
+ }
+ }
+ }
}