Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Talend routines

Hi,
I need to include my job generated java code into a maven project.
The problem is that i didn't find how to add routines dependencies.
I searched in maven repositories but i find only routines.system.api

<dependency>
<groupId>org.talend.esb.job</groupId>
<artifactId>org.talend.esb.job.api</artifactId>
<version>6.0.1</version>
</dependency>



Where to get the other routines?

Labels (2)
2 Replies
Anonymous
Not applicable
Author

Hi 
You can find all the routines dependencies in the pom.xml file after you export the job script with 'add maven script' option. Such as:
    <dependency>
      <groupId>antlr-runtime-3.5.2</groupId>
      <artifactId>antlr-runtime-3.5.2</artifactId>
      <version>1.0</version>
      <scope>system</scope>
      <systemPath>${lib.path}/antlr-runtime-3.5.2.jar</systemPath>
    </dependency>

Regards
Shong
Anonymous
Not applicable
Author

Hi shong,
I am also facing the same issue. I have to use talend job in my web application but not able to find maven dependencies forroutines jar which need to be added into pom.xml of web application. please help.