<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Need help with Jenkins pipeline build in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375618#M145916</link>
    <description>&lt;PRE&gt;&lt;SPAN class="error-inline"&gt;&lt;STRONG&gt;&lt;SPAN&gt;[ERROR] Plugin org.talend.ci:builder-maven-plugin:7.1.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor &lt;BR /&gt;for org.talend.ci:builder-maven-plugin:jar:7.1.1: Could not transfer artifact org.talend.ci:builder-maven-plugin:pom:7.1.1 &lt;BR /&gt;from/to plugins_snapshot (&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;&lt;SPAN&gt;http://XXXXXXXXX:9081/repository/talend-custom-libs-snapshot/&lt;/SPAN&gt;&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;BR /&gt;Failed to transfer file &lt;A href="http://XXXXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://XXXXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; &lt;BR /&gt;with status code 400 -&amp;gt; [Help 1]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;Am I missing&amp;nbsp; some plugins or missing some settings in my pipeline script on both?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;More info...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="pipeline-node-22"&gt;Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Failure to transfer &lt;BR /&gt;org.talend.ci:builder-maven-plugin:pom:7.1.1 from &lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/&lt;/A&gt; &lt;BR /&gt;was cached in the local repository, resolution will not be reattempted until the update interval of plugins_snapshot &lt;BR /&gt;has elapsed or updates are forced. Original error: Could not transfer artifact org.talend.ci:builder-maven-plugin:pom:7.1.1 &lt;BR /&gt;from/to plugins_snapshot (&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;BR /&gt;Failed to transfer file &lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; with status code 400&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;env.PROJECT_GIT_NAME = 'CICD_POC_PROJECT'
env.PROJECT_NAME = env.PROJECT_GIT_NAME.toLowerCase()
env.ARTIFACT = 'test_job'
env.VERSION = '0.1'
env.GIT_URL = 'https://github.com/YYYYYY/XXXXXX.git'
env.CLOUD_URL = 'https://tmc.us.cloud.talend.com/inventory/'
env.TYPE = "" // if big data = _mr
env.IMAGE_NAME = 'XXX'   
// Credentials IDs (Manage Jenkins =&amp;gt; Credentials)
env.GIT_CREDENTIALS_ID = 'git_user'
env.TMC_CREDENTIALS_ID = 'tmc_user'

node {
 	// Clean workspace before doing anything
    try {
        def userInput
        def deployprod
        stage('Initialize') {
            sh '''
                echo "PATH = ${PATH}"
                echo "M2_HOME = ${M2_HOME}"
            ''' 
        }
        stage ('Git Checkout') {
            git(
                url: "${GIT_URL}",
                credentialsId: "${GIT_CREDENTIALS_ID}",
                branch: 'master'
            )       
            mvnHome = tool 'M3'
        }
        stage ('Build, Test and Publish artifacts to Cloud') {
            withCredentials([usernamePassword(credentialsId: "${TMC_CREDENTIALS_ID}", usernameVariable: 'Dusername', passwordVariable: 'Dpassword')]) {
					withMaven(
                            // Maven installation declared in the Jenkins "Global Tool Configuration"
                            maven: 'M3',
                            // Maven settings.xml file defined with the Jenkins Config File Provider Plugin
                            // Maven settings and global settings can also be defined in Jenkins Global Tools Configuration
                            mavenSettingsConfig: 'maven-settings-file',
                            mavenOpts: '-Dlicense.path=~/Documents/files/license -Dproduct.path=~/Documents/cmdline -Dgeneration.type=local -Dservice.url=${CLOUD_URL} -Dcloud.publisher.screenshot=true -Dcloud.publisher.skip=false -Dservice.accelerate=true -Dcloud.publisher.updateFlow=true -Dservice.username=$Dusername -Dservice.password=$Dpassword -Dcloud.publisher.environment=Development -Dcloud.publisher.workspace=YYYY -Xms1024m -Xmx3096m') 
                            {
                    
                        // Run the maven build
                        sh "mvn -X -f $PROJECT_GIT_NAME/poms/pom.xml -Pcloud-publisher clean deploy -fn -e -pl jobs/process${TYPE}/${ARTIFACT}_${VERSION} -am"
                    
                        }    
		        }
        }
        
    } catch (err) {
        currentBuild.result = 'FAILED'
        throw err
    }
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 05:01:17 GMT</pubDate>
    <dc:creator>sarora1</dc:creator>
    <dc:date>2024-11-16T05:01:17Z</dc:date>
    <item>
      <title>Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375618#M145916</link>
      <description>&lt;PRE&gt;&lt;SPAN class="error-inline"&gt;&lt;STRONG&gt;&lt;SPAN&gt;[ERROR] Plugin org.talend.ci:builder-maven-plugin:7.1.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor &lt;BR /&gt;for org.talend.ci:builder-maven-plugin:jar:7.1.1: Could not transfer artifact org.talend.ci:builder-maven-plugin:pom:7.1.1 &lt;BR /&gt;from/to plugins_snapshot (&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;&lt;SPAN&gt;http://XXXXXXXXX:9081/repository/talend-custom-libs-snapshot/&lt;/SPAN&gt;&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;BR /&gt;Failed to transfer file &lt;A href="http://XXXXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://XXXXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; &lt;BR /&gt;with status code 400 -&amp;gt; [Help 1]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;Am I missing&amp;nbsp; some plugins or missing some settings in my pipeline script on both?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;More info...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="pipeline-node-22"&gt;Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Failure to transfer &lt;BR /&gt;org.talend.ci:builder-maven-plugin:pom:7.1.1 from &lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/&lt;/A&gt; &lt;BR /&gt;was cached in the local repository, resolution will not be reattempted until the update interval of plugins_snapshot &lt;BR /&gt;has elapsed or updates are forced. Original error: Could not transfer artifact org.talend.ci:builder-maven-plugin:pom:7.1.1 &lt;BR /&gt;from/to plugins_snapshot (&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;BR /&gt;Failed to transfer file &lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; with status code 400&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;env.PROJECT_GIT_NAME = 'CICD_POC_PROJECT'
env.PROJECT_NAME = env.PROJECT_GIT_NAME.toLowerCase()
env.ARTIFACT = 'test_job'
env.VERSION = '0.1'
env.GIT_URL = 'https://github.com/YYYYYY/XXXXXX.git'
env.CLOUD_URL = 'https://tmc.us.cloud.talend.com/inventory/'
env.TYPE = "" // if big data = _mr
env.IMAGE_NAME = 'XXX'   
// Credentials IDs (Manage Jenkins =&amp;gt; Credentials)
env.GIT_CREDENTIALS_ID = 'git_user'
env.TMC_CREDENTIALS_ID = 'tmc_user'

node {
 	// Clean workspace before doing anything
    try {
        def userInput
        def deployprod
        stage('Initialize') {
            sh '''
                echo "PATH = ${PATH}"
                echo "M2_HOME = ${M2_HOME}"
            ''' 
        }
        stage ('Git Checkout') {
            git(
                url: "${GIT_URL}",
                credentialsId: "${GIT_CREDENTIALS_ID}",
                branch: 'master'
            )       
            mvnHome = tool 'M3'
        }
        stage ('Build, Test and Publish artifacts to Cloud') {
            withCredentials([usernamePassword(credentialsId: "${TMC_CREDENTIALS_ID}", usernameVariable: 'Dusername', passwordVariable: 'Dpassword')]) {
					withMaven(
                            // Maven installation declared in the Jenkins "Global Tool Configuration"
                            maven: 'M3',
                            // Maven settings.xml file defined with the Jenkins Config File Provider Plugin
                            // Maven settings and global settings can also be defined in Jenkins Global Tools Configuration
                            mavenSettingsConfig: 'maven-settings-file',
                            mavenOpts: '-Dlicense.path=~/Documents/files/license -Dproduct.path=~/Documents/cmdline -Dgeneration.type=local -Dservice.url=${CLOUD_URL} -Dcloud.publisher.screenshot=true -Dcloud.publisher.skip=false -Dservice.accelerate=true -Dcloud.publisher.updateFlow=true -Dservice.username=$Dusername -Dservice.password=$Dpassword -Dcloud.publisher.environment=Development -Dcloud.publisher.workspace=YYYY -Xms1024m -Xmx3096m') 
                            {
                    
                        // Run the maven build
                        sh "mvn -X -f $PROJECT_GIT_NAME/poms/pom.xml -Pcloud-publisher clean deploy -fn -e -pl jobs/process${TYPE}/${ARTIFACT}_${VERSION} -am"
                    
                        }    
		        }
        }
        
    } catch (err) {
        currentBuild.result = 'FAILED'
        throw err
    }
}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375618#M145916</guid>
      <dc:creator>sarora1</dc:creator>
      <dc:date>2024-11-16T05:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375619#M145917</link>
      <description>&lt;P&gt;Replying to my own question:&lt;/P&gt; 
&lt;P&gt;I see issue with local studio unable to push libraries to Nexus talend-custom-libs-snapshot&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;here are some errors from my local studio log&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;org.talend.commons.exception.PersistenceException: Studio can't access the resource from server, please check the resource url.
	at org.talend.repository.remoteprovider.client.AbstractClient.getArtifactLocation(AbstractClient.java:822)
	at org.talend.designer.publish.di.preferences.PublishPreferences.getArtifactRepositoryFromServer(PublishPreferences.java:141)
	at org.talend.designer.publish.di.preferences.PublishPreferences.getArtifactRepository(PublishPreferences.java:75)
	at org.talend.designer.publish.di.preferences.PublishPreferences.getArtifactRepository(PublishPreferences.java:61)
	at org.talend.designer.publish.di.model.NexusService.getPublishNexusServerBean(NexusService.java:153)
	at org.talend.updates.runtime.nexus.component.NexusServerManager.getLocalNexusServer(NexusServerManager.java:65)
	at org.talend.updates.runtime.engine.factory.ComponentsNexusInstallFactory.getLocalNexusFeatures(ComponentsNexusInstallFactory.java:79)
	at org.talend.updates.engine.EditionComponentsNexusInstallFactory.getAllExtraFeatures(EditionComponentsNexusInstallFactory.java:41)
	at org.talend.updates.runtime.engine.factory.ComponentsNexusInstallFactory.retrieveAllExtraFeatures(ComponentsNexusInstallFactory.java:182)
	at org.talend.updates.runtime.engine.ExtraFeaturesUpdatesFactory.retrieveAllComponentFeatures(ExtraFeaturesUpdatesFactory.java:71)
	at org.talend.updates.runtime.feature.FeaturesManager.retrieveAllOfficalFeatures(FeaturesManager.java:156)
	at org.talend.updates.runtime.feature.FeaturesManager.getFeaturesCache(FeaturesManager.java:141)
	at org.talend.updates.runtime.feature.FeaturesManager.getUpdates(FeaturesManager.java:163)
	at org.talend.updates.runtime.feature.FeaturesManager.searchUpdates(FeaturesManager.java:214)
	at org.talend.updates.runtime.ui.feature.job.FeaturesCheckUpdateJob.run(FeaturesCheckUpdateJob.java:54)
	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
Caused by: Studio can't access the resource from server, please check the resource url.&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 15:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375619#M145917</guid>
      <dc:creator>sarora1</dc:creator>
      <dc:date>2019-08-09T15:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375620#M145918</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000004XsaeAAC"&gt;@xdshi&lt;/A&gt;&amp;nbsp;any help here?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 19:21:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375620#M145918</guid>
      <dc:creator>sarora1</dc:creator>
      <dc:date>2019-08-09T19:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375621#M145919</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Are you using talend open studio or subscription solution?&lt;/P&gt;
&lt;P&gt;You can find the integration documentation here:&lt;BR /&gt;&lt;SPAN&gt;&lt;A href="https://help.talend.com/reader/o2DMkp1_WVLFHSyNkjxn4w/lHXK~e0ZTKbbL6HDnQVofA" target="_blank" rel="nofollow noopener noreferrer noopener noreferrer"&gt;https://help.talend.com/reader/o2DMkp1_WVLFHSyNkjxn4w/lHXK~e0ZTKbbL6HDnQVofA&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The missing CI builder jar , you showed in the question, is now part of the subscribed 7.1.1 Talend Studio.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 03:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375621#M145919</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-12T03:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375622#M145920</link>
      <description>&lt;P&gt;Subscription version 7.1.1&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Error message says&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="pipeline-node-22"&gt;&lt;SPAN class="error-inline"&gt;[ERROR] Plugin org.talend.ci:builder-maven-plugin:7.1.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for &lt;BR /&gt;org.talend.ci:builder-maven-plugin:jar:7.1.1: Could not transfer artifact org.talend.ci:builder-maven-plugin:pom:7.1.1 from/to plugins_snapshot &lt;BR /&gt;(&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://XXXXXX:9081/repository/talend-custom-libs-snapshot/&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; Failed to transfer file &lt;BR /&gt;&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://XXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; &lt;BR /&gt;with status code 400 -&amp;gt; [Help 1]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;Based on above message the location its looking for CI builder jar at&amp;nbsp;&lt;SPAN class="pipeline-node-22"&gt;&lt;SPAN class="error-inline"&gt;&lt;A href="http://10.190.3.207:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;http://XXXXXX:9081/repository/talend-custom-libs-snapshot/org/talend/ci/builder-maven-plugin/7.1.1/builder-maven-plugin-7.1.1.pom&lt;/A&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;but I I dont see org/talend/ci under talend-custom-libs-snapshot&lt;/P&gt; 
&lt;P&gt;But I do see it's available where the the cmdline is installed on server&lt;/P&gt; 
&lt;P&gt;/home/Documents/cmdline/configuration/.m2/repository/org/talend/ci&lt;/P&gt; 
&lt;P&gt;Where do you configure location to look for there libraries?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;And if I change localRepository in maven settings.xml to where TalendStudio (cmdline) is installed&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;then I get this error message&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="pipeline-node-22"&gt;&lt;SPAN class="error-inline"&gt;[ERROR] Could not create local repository at /home/Documents/cmdline/configuration/.m2/repository -&amp;gt; [Help 1]&lt;/SPAN&gt;org.apache.maven.repository.LocalRepositoryNotAccessibleException: Could not create local repository at /home/Documents/cmdline/configuration/.m2/repository&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 13:57:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375622#M145920</guid>
      <dc:creator>sarora1</dc:creator>
      <dc:date>2019-08-12T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Jenkins pipeline build</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375623#M145921</link>
      <description>&lt;P&gt;Talend consultant was able to help us out. The problem was the permissions on cmdline folder(or whatever folder you have studio installed) were causing the failure. Resolution: change permission on cmdline folder so that Jenkins can create stuff in that folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marking this as resolved.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 20:25:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-with-Jenkins-pipeline-build/m-p/2375623#M145921</guid>
      <dc:creator>sarora1</dc:creator>
      <dc:date>2019-08-12T20:25:09Z</dc:date>
    </item>
  </channel>
</rss>

