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!

[738 byte] By [jamesw97] at [2007-9-27 19:43:16]
# 1
Hi, Have you tried this way ? (including the line below in the Manifest file of the your wars file) Class-Path: library/xercers.jar library/tools.jar
ualter at 2007-7-6 23:02:42 > top of Java-index,Desktop,Deploying...