> So basically i have some CLASS files on my machine/ Which are located > "..\workshop\output\" and ".workshop/WebService/**". > > Also i want to add whatever under this directory to EAR > "\WPSWebService\WEB-INF\" > > How can i do it using MAVEN-EAR-PLUGIN ?
I don't believe that it is legal to package un-jarred class files in an EAR file. So you will need to bundle those class files into a Jar and then simply install/deploy the jar, then add a dependency to that artifact in your EAR module. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
