/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
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2011, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
- <project>
- <!-- import shared ant targets -->
- <import file="common-targets.xml" as="common"/>
- <target name="build-multinode" description="Builds server configurations for Multi-node tests">
- <echo message="Copying and configuring instance jbossas-multinode-client"/>
- <copy todir="target/jbossas-multinode-client">
- <fileset dir="target/jbossas"/>
- </copy>
- <ts.config-as.add-remote-outbound-connection name="jbossas-multinode-client" node="${node1}" remotePort="4547" securityRealm="PasswordRealm" userName="user1"/>
- <ts.config-as.add-identity-realm name="jbossas-multinode-client" realmName="PasswordRealm" secret="cGFzc3dvcmQx"/>
- <echo message="Copying and configuring instance jbossas-multinode-server"/>
- <copy todir="target/jbossas-multinode-server">
- <fileset dir="target/jbossas"/>
- </copy>
- <ts.config-as.ip-with-multicast name="jbossas-multinode-server"
- node="${node1}"
- mcast="${mcast}"
- mcast.jgroupsDiag="${mcast.jgroupsDiag}"
- mcast.modcluster="${mcast.modcluster}"/>
- <ts.config-as.add-port-offset name="jbossas-multinode-server" offset="100" nativePort="9999" httpPort="9990"/>
- </target>
- </project>