I'm using the following to create a jar and specify the manifest file.

                <jar jarfile="${outputdir}/servercoreEJB.jar"
                        basedir="."
                        compress="FALSE"
                        manifest="./servercore/resources/ejb-jar/META-INF/MANIFEST.MF"
                        includes="**/*ejb-jar.xml" >
                        </jar>
                        
                <jar jarfile="${outputdir}/servercoreEJB.jar"
                        basedir="${outputdir}/classes"
                        compress="FALSE"
                        manifest="./servercore/resources/ejb-jar/META-INF/MANIFEST.MF"
                        excludes="**/servercorecore.txt **/jaas/*.class, 
**/jdo/*.class"
                        update="yes">
                        </jar>


It is including the correct manifest file, however, the path becomes
meta-inf/MANIFEST.MF

instead of META-INF/MANIFEST.MF

Why is that?  What is an appropriate way of forcing the correct case for the path?

Thanks in advance,
Jay

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to