Skip to content

Commit

Permalink
Upgrade Struts version
Browse files Browse the repository at this point in the history
  • Loading branch information
enricovianello committed Dec 13, 2023
1 parent 6579277 commit 434b98c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ def kubeLabel = getKubeLabel()

pipeline {

agent {
kubernetes {
label "${kubeLabel}"
cloud 'Kube mwdevel'
defaultContainer 'runner'
inheritFrom 'ci-template'
}
}
agent none

parameters {
booleanParam(name: 'BUILD_DOCKER_IMAGES', defaultValue: false,
Expand All @@ -27,13 +20,15 @@ pipeline {
stages{

stage('build') {
agent { label 'java11' }
steps {
git(url: 'https://github.com/italiangrid/voms-admin-server.git', branch: env.BRANCH_NAME)
sh 'mvn -B -U -P prod,EMI clean package'
}
}

stage('build-docker-images') {
agent { label 'docker' }
when {
expression { return params.BUILD_DOCKER_IMAGES }
}
Expand Down
2 changes: 1 addition & 1 deletion voms-admin-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<api.version>${project.version}</api.version>
<interface-version>2.0.2</interface-version>

<struts.version>2.5.30</struts.version>
<struts.version>2.5.33</struts.version>
<struts.bootstrap.plugin.version>2.5.2</struts.bootstrap.plugin.version>
<struts.jquery.plugin.version>4.0.3</struts.jquery.plugin.version>
<hibernate.version>5.2.17.Final</hibernate.version>
Expand Down

0 comments on commit 434b98c

Please sign in to comment.