diff --git a/Jenkinsfile b/Jenkinsfile index f65267d..a0ec611 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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")