<?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 Exclude dependent jar from osgi bundle through maven setting in talend 6 in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366245#M129753</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have two&amp;nbsp; jobs with sap component connection and sap input when I am exporting as osgi bundle and putting it in karaf container its giving error with&amp;nbsp;&lt;SPAN&gt;sapjco.dll already loaded in another classloader. java.library.path&amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I checked the bundles and found that both bundle contains sapjco.jar which&amp;nbsp;is tring load&amp;nbsp;sapjco.dll two times in a container and failing.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I removed sapjco.jar manually from both bundle&amp;nbsp; and placed jar in karaf/lib folder and it was started working&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;we have some automated setup through cmdline for building jobs so i can not do manual removal work&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I found in project settings we can configure to exclude jar from build but its not happening&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;project xmlns="&lt;A href="http://maven.apache.org/POM/4.0.0" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/POM/4.0.0&lt;/A&gt;" xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;"&lt;BR /&gt;xsi:schemaLocation="&lt;A href="http://maven.apache.org/POM/4.0.0" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/POM/4.0.0&lt;/A&gt; &lt;A href="http://maven.apache.org/xsd/maven-4.0.0.xsd" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/xsd/maven-4.0.0.xsd&lt;/A&gt;"&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;modelVersion&amp;gt;4.0.0&amp;lt;/modelVersion&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;groupId&amp;gt;@ItemGroupName@&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;@ItemName@-bundle&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;version&amp;gt;@ItemVersion@&amp;lt;/version&amp;gt;&lt;BR /&gt;&amp;lt;packaging&amp;gt;bundle&amp;lt;/packaging&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;properties&amp;gt;&lt;BR /&gt;&amp;lt;item.name&amp;gt;@ItemName@&amp;lt;/item.name&amp;gt;&lt;BR /&gt;&amp;lt;item.project.name&amp;gt;@ItemProjectName@&amp;lt;/item.project.name&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;bundle.config.export.package&amp;gt;@BundleConfigExportPackage@&amp;lt;/bundle.config.export.package&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.import.package&amp;gt;@BundleConfigImportPackage@&amp;lt;/bundle.config.import.package&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.export.service&amp;gt;@BundleConfigExportService@&amp;lt;/bundle.config.export.service&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.bundle.classpath&amp;gt;@BundleConfigBundleClasspath@&amp;lt;/bundle.config.bundle.classpath&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;resources.path&amp;gt;${basedir}/src/main/resources&amp;lt;/resources.path&amp;gt;&lt;BR /&gt;&amp;lt;lib.path&amp;gt;${resources.path}/lib&amp;lt;/lib.path&amp;gt;&lt;BR /&gt;&amp;lt;provided.lib.path&amp;gt;${resources.path}/provided-lib&amp;lt;/provided.lib.path&amp;gt;&lt;BR /&gt;&amp;lt;/properties&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;dependencies&amp;gt;&lt;BR /&gt;&amp;lt;!-- Will add some dependencies by API --&amp;gt;&lt;BR /&gt;&amp;lt;/dependencies&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;build&amp;gt;&lt;BR /&gt;&amp;lt;resources&amp;gt;&lt;BR /&gt;&amp;lt;resource&amp;gt;&lt;BR /&gt;&amp;lt;directory&amp;gt;${resources.path}&amp;lt;/directory&amp;gt;&lt;BR /&gt;&amp;lt;excludes&amp;gt;&lt;BR /&gt;&amp;lt;!-- Exclude the "provided" libs --&amp;gt;&lt;BR /&gt;&amp;lt;exclude&amp;gt;lib/sapjco.jar&amp;lt;/exclude&amp;gt;&lt;BR /&gt;&amp;lt;/excludes&amp;gt;&lt;BR /&gt;&amp;lt;/resource&amp;gt;&lt;BR /&gt;&amp;lt;/resources&amp;gt;&lt;BR /&gt;&amp;lt;pluginManagement&amp;gt;&lt;BR /&gt;&amp;lt;plugins&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;encoding&amp;gt;UTF-8&amp;lt;/encoding&amp;gt;&lt;BR /&gt;&amp;lt;source&amp;gt;1.7&amp;lt;/source&amp;gt;&lt;BR /&gt;&amp;lt;target&amp;gt;1.7&amp;lt;/target&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-resources-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;encoding&amp;gt;UTF-8&amp;lt;/encoding&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;/plugins&amp;gt;&lt;BR /&gt;&amp;lt;/pluginManagement&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;plugins&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.felix&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-bundle-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;version&amp;gt;2.3.7&amp;lt;/version&amp;gt;&lt;BR /&gt;&amp;lt;extensions&amp;gt;true&amp;lt;/extensions&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;archive&amp;gt;&lt;BR /&gt;&amp;lt;addMavenDescriptor&amp;gt;false&amp;lt;/addMavenDescriptor&amp;gt;&lt;BR /&gt;&amp;lt;/archive&amp;gt;&lt;BR /&gt;&amp;lt;instructions&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-SymbolicName&amp;gt;${project.groupId}&amp;lt;/Bundle-SymbolicName&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-Name&amp;gt;${item.name}&amp;lt;/Bundle-Name&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-Version&amp;gt;${project.version}&amp;lt;/Bundle-Version&amp;gt;&lt;BR /&gt;&amp;lt;Export-Package&amp;gt;${bundle.config.export.package}&amp;lt;/Export-Package&amp;gt;&lt;BR /&gt;&amp;lt;Export-Service&amp;gt;${bundle.config.export.service}&amp;lt;/Export-Service&amp;gt;&lt;BR /&gt;&amp;lt;Import-Package&amp;gt;&lt;BR /&gt;${bundle.config.import.package},&lt;BR /&gt;*;resolution:=optional&lt;BR /&gt;&amp;lt;/Import-Package&amp;gt;&lt;BR /&gt;&amp;lt;Include-Resource&amp;gt;&lt;BR /&gt;{maven-resources}, {maven-dependencies},&lt;BR /&gt;&amp;lt;/Include-Resource&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-ClassPath&amp;gt;&lt;BR /&gt;${bundle.config.bundle.classpath}&lt;BR /&gt;&amp;lt;/Bundle-ClassPath&amp;gt;&lt;BR /&gt;&amp;lt;/instructions&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;/plugins&amp;gt;&lt;BR /&gt;&amp;lt;/build&amp;gt;&lt;BR /&gt;&amp;lt;/project&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Is I am missing something ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Dec 2017 07:18:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-12-14T07:18:55Z</dc:date>
    <item>
      <title>Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366245#M129753</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have two&amp;nbsp; jobs with sap component connection and sap input when I am exporting as osgi bundle and putting it in karaf container its giving error with&amp;nbsp;&lt;SPAN&gt;sapjco.dll already loaded in another classloader. java.library.path&amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I checked the bundles and found that both bundle contains sapjco.jar which&amp;nbsp;is tring load&amp;nbsp;sapjco.dll two times in a container and failing.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I removed sapjco.jar manually from both bundle&amp;nbsp; and placed jar in karaf/lib folder and it was started working&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;we have some automated setup through cmdline for building jobs so i can not do manual removal work&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I found in project settings we can configure to exclude jar from build but its not happening&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;project xmlns="&lt;A href="http://maven.apache.org/POM/4.0.0" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/POM/4.0.0&lt;/A&gt;" xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;"&lt;BR /&gt;xsi:schemaLocation="&lt;A href="http://maven.apache.org/POM/4.0.0" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/POM/4.0.0&lt;/A&gt; &lt;A href="http://maven.apache.org/xsd/maven-4.0.0.xsd" target="_blank" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/xsd/maven-4.0.0.xsd&lt;/A&gt;"&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;modelVersion&amp;gt;4.0.0&amp;lt;/modelVersion&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;groupId&amp;gt;@ItemGroupName@&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;@ItemName@-bundle&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;version&amp;gt;@ItemVersion@&amp;lt;/version&amp;gt;&lt;BR /&gt;&amp;lt;packaging&amp;gt;bundle&amp;lt;/packaging&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;properties&amp;gt;&lt;BR /&gt;&amp;lt;item.name&amp;gt;@ItemName@&amp;lt;/item.name&amp;gt;&lt;BR /&gt;&amp;lt;item.project.name&amp;gt;@ItemProjectName@&amp;lt;/item.project.name&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;bundle.config.export.package&amp;gt;@BundleConfigExportPackage@&amp;lt;/bundle.config.export.package&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.import.package&amp;gt;@BundleConfigImportPackage@&amp;lt;/bundle.config.import.package&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.export.service&amp;gt;@BundleConfigExportService@&amp;lt;/bundle.config.export.service&amp;gt;&lt;BR /&gt;&amp;lt;bundle.config.bundle.classpath&amp;gt;@BundleConfigBundleClasspath@&amp;lt;/bundle.config.bundle.classpath&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;resources.path&amp;gt;${basedir}/src/main/resources&amp;lt;/resources.path&amp;gt;&lt;BR /&gt;&amp;lt;lib.path&amp;gt;${resources.path}/lib&amp;lt;/lib.path&amp;gt;&lt;BR /&gt;&amp;lt;provided.lib.path&amp;gt;${resources.path}/provided-lib&amp;lt;/provided.lib.path&amp;gt;&lt;BR /&gt;&amp;lt;/properties&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;dependencies&amp;gt;&lt;BR /&gt;&amp;lt;!-- Will add some dependencies by API --&amp;gt;&lt;BR /&gt;&amp;lt;/dependencies&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;build&amp;gt;&lt;BR /&gt;&amp;lt;resources&amp;gt;&lt;BR /&gt;&amp;lt;resource&amp;gt;&lt;BR /&gt;&amp;lt;directory&amp;gt;${resources.path}&amp;lt;/directory&amp;gt;&lt;BR /&gt;&amp;lt;excludes&amp;gt;&lt;BR /&gt;&amp;lt;!-- Exclude the "provided" libs --&amp;gt;&lt;BR /&gt;&amp;lt;exclude&amp;gt;lib/sapjco.jar&amp;lt;/exclude&amp;gt;&lt;BR /&gt;&amp;lt;/excludes&amp;gt;&lt;BR /&gt;&amp;lt;/resource&amp;gt;&lt;BR /&gt;&amp;lt;/resources&amp;gt;&lt;BR /&gt;&amp;lt;pluginManagement&amp;gt;&lt;BR /&gt;&amp;lt;plugins&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;encoding&amp;gt;UTF-8&amp;lt;/encoding&amp;gt;&lt;BR /&gt;&amp;lt;source&amp;gt;1.7&amp;lt;/source&amp;gt;&lt;BR /&gt;&amp;lt;target&amp;gt;1.7&amp;lt;/target&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-resources-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;encoding&amp;gt;UTF-8&amp;lt;/encoding&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;/plugins&amp;gt;&lt;BR /&gt;&amp;lt;/pluginManagement&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;lt;plugins&amp;gt;&lt;BR /&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;lt;groupId&amp;gt;org.apache.felix&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;lt;artifactId&amp;gt;maven-bundle-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;lt;version&amp;gt;2.3.7&amp;lt;/version&amp;gt;&lt;BR /&gt;&amp;lt;extensions&amp;gt;true&amp;lt;/extensions&amp;gt;&lt;BR /&gt;&amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;lt;archive&amp;gt;&lt;BR /&gt;&amp;lt;addMavenDescriptor&amp;gt;false&amp;lt;/addMavenDescriptor&amp;gt;&lt;BR /&gt;&amp;lt;/archive&amp;gt;&lt;BR /&gt;&amp;lt;instructions&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-SymbolicName&amp;gt;${project.groupId}&amp;lt;/Bundle-SymbolicName&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-Name&amp;gt;${item.name}&amp;lt;/Bundle-Name&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-Version&amp;gt;${project.version}&amp;lt;/Bundle-Version&amp;gt;&lt;BR /&gt;&amp;lt;Export-Package&amp;gt;${bundle.config.export.package}&amp;lt;/Export-Package&amp;gt;&lt;BR /&gt;&amp;lt;Export-Service&amp;gt;${bundle.config.export.service}&amp;lt;/Export-Service&amp;gt;&lt;BR /&gt;&amp;lt;Import-Package&amp;gt;&lt;BR /&gt;${bundle.config.import.package},&lt;BR /&gt;*;resolution:=optional&lt;BR /&gt;&amp;lt;/Import-Package&amp;gt;&lt;BR /&gt;&amp;lt;Include-Resource&amp;gt;&lt;BR /&gt;{maven-resources}, {maven-dependencies},&lt;BR /&gt;&amp;lt;/Include-Resource&amp;gt;&lt;BR /&gt;&amp;lt;Bundle-ClassPath&amp;gt;&lt;BR /&gt;${bundle.config.bundle.classpath}&lt;BR /&gt;&amp;lt;/Bundle-ClassPath&amp;gt;&lt;BR /&gt;&amp;lt;/instructions&amp;gt;&lt;BR /&gt;&amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;BR /&gt;&amp;lt;/plugins&amp;gt;&lt;BR /&gt;&amp;lt;/build&amp;gt;&lt;BR /&gt;&amp;lt;/project&amp;gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Is I am missing something ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 07:18:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366245#M129753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-14T07:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366246#M129754</link>
      <description>&lt;P&gt;Wasted whole weekend to figure out how i can exclude jar from classpath through modifying projectsetting--&amp;gt;build--&amp;gt;osgi .maven pom settings&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Now i have a feeling its not using this settings at all.&lt;/P&gt; 
&lt;P&gt;Also i tried&amp;nbsp;updating pom.xml by adding dependency scope to provided by going workspace--&amp;gt;projectname--&amp;gt;pom.xml and tring to make build through studio again this pom.xml file reverting back to original pom.xml&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Couldn't find anything on help documentation&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Is any one has any info or link. I am tired with this &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 15:37:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366246#M129754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-17T15:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366247#M129755</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Have you tried to&lt;FONT face="Arial, Helvetica, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="Arial, Helvetica, sans-serif"&gt;exclude JAR files from the ClassPath?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial, Helvetica, sans-serif"&gt;Best regards&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial, Helvetica, sans-serif"&gt;Sabrina&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 03:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366247#M129755</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-18T03:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366248#M129756</link>
      <description>&lt;P&gt;Hi Sabrina,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reply !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My main is goal is to remove jar from class path of bundle and place that jar in karaf/lib so that it can be share by two bundle&amp;nbsp; and i can avoid class loader error ( I have two different bundles with same jar dependency class loader gives error &lt;STRONG&gt;sapjco3.dll already loaded in another classloader&lt;/STRONG&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I am not aware of how I can remove it from class path.Could you please provide details of that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;BR /&gt;Ashish&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 06:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366248#M129756</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-18T06:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366249#M129757</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;We don't do it before. We will make an investigation on your issue and then come back to you as soon as we can.&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 08:55:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366249#M129757</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-18T08:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366250#M129758</link>
      <description>Hi Sabrina,
&lt;BR /&gt;
&lt;BR /&gt;I am blocked in moving my code from dev to qa because of same issue.
&lt;BR /&gt;
&lt;BR /&gt;Do you have any findings for me .
&lt;BR /&gt;
&lt;BR /&gt;Thanks
&lt;BR /&gt;Ashish</description>
      <pubDate>Wed, 20 Dec 2017 06:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366250#M129758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-20T06:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366251#M129759</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Are you using talend subscription solution?&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 06:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366251#M129759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-20T06:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366252#M129760</link>
      <description>yes enterprise edition of esb</description>
      <pubDate>Wed, 20 Dec 2017 16:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366252#M129760</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-20T16:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366253#M129761</link>
      <description>&lt;P&gt;Can you confirm which version is that exactly ? and are you using Talend DI or Route for Sap stuff ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:58:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366253#M129761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-19T13:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude dependent jar from osgi bundle through maven setting in talend 6</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366254#M129762</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It is talend ESB&amp;nbsp; 6.2.1&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 08:20:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Exclude-dependent-jar-from-osgi-bundle-through-maven-setting-in/m-p/2366254#M129762</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-07T08:20:54Z</dc:date>
    </item>
  </channel>
</rss>

