(Sorry my first post was mis placed) Hi all,
It seems that the maven eclipse plugin add ear jar dependencies in the WEB-INF/lib directory. I've used the following command : mvn eclipse:clean eclipse:eclipse -Dwtpversion=1.0 (I've also tried 1.5 with the snapshot version) And when deploy the ear project through WTP in a J2EE Server I see the following structure : my-ear |---- my-ejb.jar |---- my-webapp.war |---- META-INF/ |---- application.xml |---- MANIFEST.MF | |----- WEB-INF/ |---- lib |---- dependency-1.jar |---- dependency-2.jar But I don't expect these dependencies to be here, I expect something like this : my-ear |---- my-ejb.jar |---- my-webapp.war |---- META-INF/ |---- application.xml |---- MANIFEST.MF | |----- dependency-1.jar |----- dependency-2.jar So I've checked quickly the SVN repository and it seems that the directory in which we put "ear utility jar" is hard coded as "WEB-INF/lib" (-> AbstractWtpResourceWritter.addDependency() ) Are you OK with this packaging (always put ear utility jars in the WEB-INF/lib) ? Is there a way to configure where wtp will put these ear utility-jars ? Thanks In Advance Elid OR --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
