How to add third party libraries to Talend project?
etl, java, talend
Solution
You can import the external jars using `tLibraryLoad` component or `Editing Routine Libraries`.
For more information visit
http://vikramtakkar.blogspot.in/2013/03/importing-external-jar-or-library-files.html
Problem
How to add third party libraries (jar files) to a Talend project ? One more question is, Each Talend `component` uses `LogFactory`, but in my case it is throwing ``` java.lang.NoClassDefFoundError: org.apache.commons.logging.LogFactory at ... ``` with `tSetGlobalVar` component, how can I make use of existing logging library to get rid of this exception?