From: Scott M S. <st...@us...> - 2004-04-26 03:47:38
|
User: starksm Date: 04/04/25 20:47:32 Modified: . build.xml Log: Factor out the clustered http ejbs into a seperate hello-ha.jar Revision Changes Path 1.361 +23 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.360 retrieving revision 1.361 diff -u -r1.360 -r1.361 --- build.xml 22 Apr 2004 13:44:29 -0000 1.360 +++ build.xml 26 Apr 2004 03:47:32 -0000 1.361 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.360 2004/04/22 13:44:29 scoy Exp $ --> +<!-- $Id: build.xml,v 1.361 2004/04/26 03:47:32 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2910,8 +2910,25 @@ </jar> <!-- build hello.jar --> - <jar jarfile="${build.lib}/hello.jar"> - <metainf dir="${build.resources}/hello/META-INF"/> + <jar destfile="${build.lib}/hello.jar"> + <metainf dir="${build.resources}/hello/META-INF"> + <include name="ejb-jar.xml" /> + <include name="jboss.xml" /> + <include name="jbosscmp-jdbc.xml" /> + </metainf> + <fileset dir="${build.classes}"> + <patternset refid="jboss.test.util.ejb.set"/> + <include name="org/jboss/test/hello/interfaces/**"/> + <include name="org/jboss/test/hello/ejb/**"/> + </fileset> + </jar> + + <!-- build hello-ha.jar --> + <jar destfile="${build.lib}/hello-ha.jar"> + <zipfileset dir="${build.resources}/hello/META-INF" + includes="ejb-jar-ha.xml" fullpath="META-INF/ejb-jar.xml" /> + <zipfileset dir="${build.resources}/hello/META-INF" + includes="jboss-ha.xml" fullpath="META-INF/jboss.xml" /> <fileset dir="${build.classes}"> <patternset refid="jboss.test.util.ejb.set"/> <include name="org/jboss/test/hello/interfaces/**"/> @@ -6774,6 +6791,9 @@ <sysproperty key="jbosstest.secure" value="true"/> <sysproperty key="java.security.auth.login.config" value="${build.resources}/security/auth.conf"/> + <sysproperty key="javax.net.ssl.trustStore" + value="${build.resources}/security/tst.keystore"/> + <sysproperty key="org.jboss.security.ignoreHttpsHost" value="true" /> <classpath> <pathelement location="${build.classes}"/> |