Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <target name="war-local">
  2. <copy todir="${atg.eardir}/${atg.client}.ear/cps.war">
  3. <fileset dir="${atg.client}/${atg.clientmodule}/j2ee-apps/cps/cps.war" excludes="**/*.svn" />
  4. </copy>
  5.  
  6. <path id="wl.deploy.path">
  7. <fileset file="/apps/Oracle/Middleware/product/wlserver/server/lib/weblogic.jar"/>
  8. </path>
  9.  
  10. <taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy">
  11. <classpath>
  12. <pathelement location="/apps/Oracle/Middleware/product/wlserver/server/lib/weblogic.jar"/>
  13. </classpath>
  14. </taskdef>
  15.  
  16. <wldeploy
  17. action="redeploy"
  18. upload="false"
  19. verbose="true"
  20. name="CPS"
  21. user="weblogic"
  22. password="weblogic123"
  23. adminurl="t3://localhost:7001"
  24. targets="local_prod1a"
  25. deltaFiles="cps.war/" />
  26. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement