PageRenderTime 60ms CodeModel.GetById 35ms RepoModel.GetById 0ms app.codeStats 0ms

/jboss-as-7.1.1.Final/testsuite/integration/src/test/scripts/multinode-build.xml

#
XML | 51 lines | 22 code | 7 blank | 22 comment | 0 complexity | dac5ebaaa1aa67bec330498e9732087b MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ JBoss, Home of Professional Open Source.
  4. ~ Copyright 2011, Red Hat, Inc., and individual contributors
  5. ~ as indicated by the @author tags. See the copyright.txt file in the
  6. ~ distribution for a full listing of individual contributors.
  7. ~
  8. ~ This is free software; you can redistribute it and/or modify it
  9. ~ under the terms of the GNU Lesser General Public License as
  10. ~ published by the Free Software Foundation; either version 2.1 of
  11. ~ the License, or (at your option) any later version.
  12. ~
  13. ~ This software is distributed in the hope that it will be useful,
  14. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ~ Lesser General Public License for more details.
  17. ~
  18. ~ You should have received a copy of the GNU Lesser General Public
  19. ~ License along with this software; if not, write to the Free
  20. ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  22. -->
  23. <project>
  24. <!-- import shared ant targets -->
  25. <import file="common-targets.xml" as="common"/>
  26. <target name="build-multinode" description="Builds server configurations for Multi-node tests">
  27. <echo message="Copying and configuring instance jbossas-multinode-client"/>
  28. <copy todir="target/jbossas-multinode-client">
  29. <fileset dir="target/jbossas"/>
  30. </copy>
  31. <ts.config-as.add-remote-outbound-connection name="jbossas-multinode-client" node="${node1}" remotePort="4547" securityRealm="PasswordRealm" userName="user1"/>
  32. <ts.config-as.add-identity-realm name="jbossas-multinode-client" realmName="PasswordRealm" secret="cGFzc3dvcmQx"/>
  33. <echo message="Copying and configuring instance jbossas-multinode-server"/>
  34. <copy todir="target/jbossas-multinode-server">
  35. <fileset dir="target/jbossas"/>
  36. </copy>
  37. <ts.config-as.ip-with-multicast name="jbossas-multinode-server"
  38. node="${node1}"
  39. mcast="${mcast}"
  40. mcast.jgroupsDiag="${mcast.jgroupsDiag}"
  41. mcast.modcluster="${mcast.modcluster}"/>
  42. <ts.config-as.add-port-offset name="jbossas-multinode-server" offset="100" nativePort="9999" httpPort="9990"/>
  43. </target>
  44. </project>