Hi,
I am using maven-ear-plugin. I want to add following ANT Script files in
MAVEN EAR plugin. How can i do it ?
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 ?
Before converting the project from ANT to MAVEN build.xml File as followed:
<ear
destfile="${maven.local.repository}\sampleproject\sampleproject\1.0\sampleproject-1.0.ear"
appxml="..\META-INF/application.xml" >
<fileset dir="..\" includes="*.jar"/>
<metainf dir="..\META-INF"/>
<fileset dir="..\.workshop\output" />
<fileset dir="..\">
<include name=".workshop/WebService/**"/>
<include name="\WPSWebService\WEB-INF\**"/>
</fileset>
</ear>
Please let me know i am looking to solve this problem.
Thanks,
daivish.