Advertisement
Guest User

Untitled

a guest
Jul 14th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <target name="installEAR" depends="uninstallEAR">
  2. <fail unless="wasHome.dir">The property "wasHome.dir" must be specified.
  3. </fail>
  4. <fail unless="appName">The property "appName" must be specified.</fail>
  5. <fail unless="deployEar">The property "deployEar" must be specified.</fail>
  6. <echo message="Deployable EAR File found at: ${deployEar}" />
  7. <wsInstallApp ear="${deployEar}"
  8. options="-appname ${appName} -cell ${was.cell} -node ${was.node} -usedefaultbindings"
  9. wasHome="${wasHome.dir}"
  10. conntype="${connType}"
  11. port="${port}"
  12. host="${hostName}"
  13. user="${userId}"
  14. password="${password}"
  15. failonerror="true" />
  16. </target>
  17.  
  18. <?xml version="1.0" encoding="UTF-8"?>
  19. <web-ext
  20. xmlns="http://websphere.ibm.com/xml/ns/javaee"
  21. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee
  23. http://websphere.ibm.com/xml/ns/javaee/ibm-web-ext_1_1.xsd"
  24. version="1.1">
  25.  
  26. <context-root uri="test"/>
  27. </web-ext>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement