WAR files sharing multiple JAR library files?
Hello all, I want to make an EAR file that contains 4 WAR files, each of those WAR files relies on the same jar library files, is there some way I can make an EAR that only has one copy of each jar file?
i put the jar files in the /library of the EAR as per the java deploytool, but that just gives class not founds
my ear structure currently is this
test.ear
======
a.war
b.war
c.war
d.war
\library\xerces.jar
\library\tools.jar
\meta-inf\manifest.mf
\meta-inf\application.xml
\meta-inf\sun-j2ee-ri.xml
i tried putting classpath: xerces.jar tools.jar
but that doesnt work, any idea on how my syntax or EAR structure is wrong?
thanks!

