This commit is contained in:
Roberto Cirillo 2023-06-15 15:15:32 +02:00
parent 12be87c118
commit 14dcf64e6d
1 changed files with 5 additions and 3 deletions

8
Jenkinsfile vendored
View File

@ -365,10 +365,12 @@ def deployRelease(def categoryList, def yaml){
def sg= component_list?.collect{ if ("$it.name" == 'smartgears-distribution'){ return "$it.version"; }}
smartgears=(sg !=null ) ? sg[0] : ''
}else if (category =="${PORTLET_CATEGORY}"){
portlets="\"generic_portlets\": ";
//def portlets="{\"generic_portlets\": ";
portlets += component_list?.collect{ return [ 'name': "$it.name", 'version': "$it.version", 'extension': 'war' ] }
// portlets += "}"
writeJSON file: 'portlets.json', json: portlets
def jsonContent= "{\"generic_portlets\":"+portlets+"}"
echo "json: $json"
// portlets += "}"
writeJSON file: 'portlets.json', json: jsonContent
// def read = readJSON file: 'portlets.json'
// println("Portlets found: "+read.name+" "+read.version+ " "+read.extension)
def output = sh(returnStdout: true, returnStdoutTrim: true, script: "mv portlets.json $ANSIBLE_ROOT_FOLDER")