I have to create a single command to create multiple(dev|qa|uat) war/ear. Something like :
ant -f build.xml -Denv=dev|qa|uat -propertyfile= devProp|qaProp|uatProp
-Dstage.dir=devdir|qadir|uatdir
I already have different properties file, different staging,deploying target for each environment.I also have diff .cmd files to build each of them separately. What I am stuck at is..To Build them all in one go..
So, What I am looking for is:---
*ant -f build.xml -Denv=dev|qa|uat -propertyfile= devProp|qaProp|uatProp -Dstage.dir=devdir|qadir|uatdir*
Please provide some help..
Thanks and regards
I tried the approach suggested by BigMike below and that was fine.
But there is another problem that i am facing now while running it...
I am getting below error on the 2nd execution(i.e. order is dev,it,uat).So with the same code but different settings(properties file and directory locations), I am getting below error .... weblogic.utils.compiler.ToolFailureException: [J2EE:160119]Appc is unable to process the file '**_ejb.jar'. The following error occurred:
java.lang.OutOfMemoryError
at weblogic.ejb20.compliance.EJBComplianceChecker.check(EJBComplianceChecker.java:268)
at weblogic.ejb20.compliance.EJBComplianceChecker.checkDeploymentInfo(EJBComplianceChecker.java:232)
at weblogic.ejb20.ejbc.EJBCompiler.complianceCheckJar(EJBCompiler.java:810)
at weblogic.ejb20.ejbc.EJBCompiler.checkCompliance(EJBCompiler.java:766)
Please provide some help...