[resolved] Error: Module xxxxxx.jar is required in User component
Hello,
i have 2 usercomponents, using the same Module cobol2j.jar which is a bugfixed and extended Version of cobol2j.1.5.3
One component we developed on our own, immideadly using the new jar file:
<IMPORTS>
<IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
<IMPORT NAME="IMSFileAidFormat" MODULE="IMSFileAidFormat.jar" REQUIRED="true" />
<IMPORT NAME="commons-lang" MODULE="commons-lang-2.4.jar" REQUIRED="true" />
<IMPORT NAME="commons-logging" MODULE="commons-logging-1.1.1.jar" REQUIRED="true" />
<IMPORT NAME="guava" MODULE="guava-19.0.jar" REQUIRED="true" />
</IMPORTS>
This component work perfektly finding the jar, which is in the componentfolder and also automaticly deployed to <talendbase>\lib\java The second component is derived f
Just stating the obvious here. In your XML you have the following line:
<IMPORT NAME="cobol2j" MODULE="cobol2.jar" REQUIRED="true" />
Should this not be
<IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
(like in your first XML)?
Just stating the obvious here. In your XML you have the following line:
<IMPORT NAME="cobol2j" MODULE="cobol2.jar" REQUIRED="true" />
Should this not be
<IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
(like in your first XML)?