Hi.
I
Hi.
I
Hi
TaminoAPI4J is directly dependent on the following Jars
jaxrpc.jar, log4j.jar, TaminoAPI4J-l10n.jar, xercesImpl.jar,
xmlParserAPIs.jar
If you are going to use javaJDOM / JDOM, the following
additional Jars are needed.
jdom.jar, javaJDOM.jar
All the above Jars to be used should be as delivered with the
Tamino installation.
Incase, you are working with TaminoJCA connectors, then
all the Jars in the directory
TaminoInstallation\Tamino 4.4.1.1\SDK\TaminoAPI4J\lib
are needed to be in the classpath
Regards, Srinu
Thanks for your input Sri.
I’ve gone ahead and included the other jars into our own repository. Had to use the manifests of the various jars to get the version numbers.
I’ve added all the other jars as dependencies to the TaminoAPI4J.jar. Heres my pom entry for others who might be interested. Versions relate to just released Update 8. I’ve left out Xerces and parsers as we have later versions that will cause a confllict. Have flagged to come back to.
<xml>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.softwareag</groupId>
<artifactId>TaminoAPI4J</artifactId>
<version>4.4.1.29</version>
<dependencies>
<dependency>
<groupId>com.softwareag</groupId>
<artifactId>TaminoAPI4J-l10n</artifactId>
<version>4.4.1.29</version>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.softwareag</groupId>
<artifactId>TaminoJdom</artifactId>
<version>4.4.1.29</version>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.softwareag</groupId>
<artifactId>TaminoJaxrpc</artifactId>
<version>1.4.2_05_b04</version>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.softwareag</groupId>
<artifactId>TaminoJCA</artifactId>
<version>4.4.1.22</version>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.softwareag</groupId>
<artifactId>TaminoUtx</artifactId>
<version>1.0.0.6</version>
<optional>false</optional>
</dependency>
</dependencies>
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>
Would be nice to have a corporate, or even public, repository for this type of thing. Save us all from repeating the maintenance, but guess its Java specific and we do so much more.
regards, G.