We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6e0da commit e167158Copy full SHA for e167158
Jenkinsfile
@@ -70,15 +70,12 @@ pipeline {
70
}
71
72
stages {
73
- stage('Setup Maven') {
+ stage('Download & Setup Maven') {
74
steps {
75
container('ci') {
76
sh '''
77
- # Download Maven 3.9.0
78
curl -o maven.tar.gz -L https://downloads.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz
79
- # Extract Maven
80
tar -xzf maven.tar.gz -C ${WORKSPACE}
81
- # Clean up tar file
82
rm -f maven.tar.gz
83
'''
84
// Set MAVEN_HOME manually
0 commit comments