From: David J. <d_j...@us...> - 2002-12-23 23:45:30
|
User: d_jencks Date: 02/12/23 15:45:29 Modified: . build.xml Log: Switch to using internally built xdoclet. This commit involves changing the xdoclet location in libraries.ent, changing many imports to fully qualified, and improving the xmbean attributes for the tm xmbeans, and incidentally building some test case ejb interfaces with xdoclet. Revision Changes Path 1.208 +22 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.207 retrieving revision 1.208 diff -u -r1.207 -r1.208 --- build.xml 17 Dec 2002 07:20:22 -0000 1.207 +++ build.xml 23 Dec 2002 23:45:27 -0000 1.208 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.207 2002/12/17 07:20:22 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.208 2002/12/23 23:45:27 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -143,6 +143,8 @@ <property name="jbosstest.threadcount" value="5"/> <property name="jbosstest.beancount" value="5"/> + <property name="jbosstest.server.name" value="local"/> + <property name="jbosstest.data.dir" value="${module.output}/data"/> <!-- Classpath to build and run the tests --> @@ -203,6 +205,22 @@ <target name="compile-bean-sources" depends="init" unless="noxdoclet"> <mkdir dir="${build.gen-src}"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/invokers/ejb/StatelessSpeedSessionBean.java"/> + <include name="org/jboss/test/invokers/ejb/StatelessSessionBean.java"/> + <include name="org/jboss/test/pooled/bean/StatelessSessionBean.java"/> + </fileset> + <packageSubstitution packages="ejb" substituteWith="interfaces"/> + <packageSubstitution packages="bean" substituteWith="interfaces"/> + <remoteinterface/> + <!--localinterface/--> + <homeinterface/> + <!--localhomeinterface/--> + </ejbdoclet> + <!--ejbconf--> <mkdir dir="${build.resources}/ejb-conf/readonly/META-INF"/> <ejbdoclet destdir="${build.gen-src}" @@ -605,6 +623,7 @@ <include name="org/jboss/test/jca/wrapper/*.java"/> <include name="org/jboss/test/jmx/deployer/*.java"/> <include name="org/jboss/test/jmx/mbean/*.java"/> + <include name="org/jboss/test/jmx/mbeancrashtest/*.java"/> <include name="org/jboss/test/jmx/missingclass/*.java"/> <include name="org/jboss/test/util/mbean/*.java"/> </fileset> @@ -4111,6 +4130,7 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="jbosstest.server.name" value="${jbosstest.server.name}"/> <classpath> @@ -4270,7 +4290,7 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> - <sysproperty key="org.jboss.invocation.trunk.enable_nbio" value="false"/> + <sysproperty key="jbosstest.server.name" value="${jbosstest.server.name}"/> <sysproperty key="java.security.auth.login.config" value="${build.resources}/security/auth.conf"/> |