<?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 Re: How to deploy a custom component that was developed in the Talend component kit?(without maven) in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246585#M149137</link>
    <description>&lt;P&gt;Is it possible to install a component (using the toolkit) built with 7.1 into a 6.5 environment?&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jul 2019 06:21:08 GMT</pubDate>
    <dc:creator>serdarkilic</dc:creator>
    <dc:date>2019-07-11T06:21:08Z</dc:date>
    <item>
      <title>How to deploy a custom component that was developed in the Talend component kit?(without maven)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246582#M149134</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;I use &lt;A href="https://talend.github.io/component-runtime/main/1.1.5/index.html" target="_self" rel="nofollow noopener noreferrer"&gt;Talend Komponent KIT&lt;/A&gt; for develop my custom component. And I'm successfully added it to Talend Open Studio for ESB(Version: 7.1.1) (with the command &lt;EM&gt;talend-component:deploy-in-studio&lt;/EM&gt;). But how can someone install it into yourself studio without maven? In the target folder I get a .jar file for my component. I tried to add this jar to the folder with another custom components(I mean Preferences -&amp;gt; Talend-&amp;gt;Components), &lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;but didn't work&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246582#M149134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a custom component that was developed in the Talend component kit?(without maven)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246583#M149135</link>
      <description>&lt;P&gt;To deploy the component without maven plugin.&lt;BR /&gt;You will need to do that manually or by scripting the bellow steps : (there is no feature in the studio that let you import a jar for the moment)&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;Copy the component jar and all it's dependencies into &lt;EM&gt;&amp;lt;studio home&amp;gt;/configuration/.m2 &lt;/EM&gt;by keeping the maven repository layout (gourpId/artifatcId/version/jar)&lt;/LI&gt;
 &lt;LI&gt;Create a file (if not already exist) named &lt;EM&gt;components-registration.properties &lt;/EM&gt;in &lt;EM&gt;&amp;lt;studio home&amp;gt;/configuration/&lt;/EM&gt;&lt;/LI&gt;
 &lt;LI&gt;Register your component by adding a new line in the file containing &lt;EM&gt;[component family]=groupId\:artifactId\:version&lt;/EM&gt;
  &lt;UL&gt;
   &lt;LI&gt;for example if you have a jdbc component, the line will be &lt;EM&gt;jdbc=org.talend.components\:jdbc\:1.0.0&lt;/EM&gt;&lt;/LI&gt;
  &lt;/UL&gt;&lt;/LI&gt;
 &lt;LI&gt;In &lt;EM&gt;config.ini&lt;/EM&gt; file from &lt;EM&gt;&amp;lt;studio home&amp;gt;/configuration/&lt;/EM&gt; add a line pointing to the registration file component.java.registry=&amp;lt;studio home&amp;gt;/configuration/components-registration.properties&lt;/LI&gt;
 &lt;LI&gt;Restart the studio&lt;/LI&gt;
 &lt;LI&gt;The component should show up in the pallet&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If you did some changed to the component properties. and redeploy it to the studio you will need to clear the studio cache by deleting all the &lt;EM&gt;org.eclipse.*&lt;/EM&gt; folders from &lt;EM&gt;&amp;lt;studio home&amp;gt;/configuraiton&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The maven plugin automate all that for you.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 14:31:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246583#M149135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-30T14:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a custom component that was developed in the Talend component kit?(without maven)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246584#M149136</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a quick message to mention that a simpler way to share a component can be to use the Component ARchive. In short you will package your component as a .car which is executable and enables to deploy into a studio the component.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find more about it on our official&amp;nbsp;&lt;A href="https://talend.github.io/component-runtime/main/1.1.6/build-tools-maven.html#_generating_the_component_archive" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;documentation.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 14:38:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246584#M149136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-30T14:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a custom component that was developed in the Talend component kit?(without maven)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246585#M149137</link>
      <description>&lt;P&gt;Is it possible to install a component (using the toolkit) built with 7.1 into a 6.5 environment?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 06:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246585#M149137</guid>
      <dc:creator>serdarkilic</dc:creator>
      <dc:date>2019-07-11T06:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a custom component that was developed in the Talend component kit?(without maven)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246586#M149138</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLIsAAO"&gt;@serdarkilic&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No, 6.5 does not support the Kit components at all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 08:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-deploy-a-custom-component-that-was-developed-in-the/m-p/2246586#M149138</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-11T08:49:10Z</dc:date>
    </item>
  </channel>
</rss>

