This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git
The following commit(s) were added to refs/heads/master by this push:
new f0defd0 Removes purge local repo to avoid problems with concurrent
builds
f0defd0 is described below
commit f0defd0650da80fbf2f4033a952772da57a95246
Author: Lukasz Lenart <[email protected]>
AuthorDate: Sun Feb 23 19:15:26 2020 +0100
Removes purge local repo to avoid problems with concurrent builds
---
Jenkinsfile | 5 -----
1 file changed, 5 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 0866b57..a6812c3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,15 +17,10 @@ pipeline {
agent {
label 'ubuntu'
}
- tools {
- jdk 'JDK 1.8 (latest)'
- maven 'Maven (latest)'
- }
stages {
stage('Clean up') {
steps {
cleanWs deleteDirs: true, patterns: [[pattern: '**/target/**',
type: 'INCLUDE']]
- sh 'mvn -B dependency:purge-local-repository'
}
}
}