|
From: Igor F. <ig...@us...> - 2003-03-26 16:58:04
|
User: igorfie
Date: 03/03/26 08:58:03
Modified: . build.xml
Log:
Added interception of calls to EJB implementation test case (does not seem to work at the moment)
Revision Changes Path
1.228 +27 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -r1.227 -r1.228
--- build.xml 18 Mar 2003 16:28:45 -0000 1.227
+++ build.xml 26 Mar 2003 16:58:01 -0000 1.228
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.227 2003/03/18 16:28:45 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.228 2003/03/26 16:58:01 igorfie Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -683,6 +683,22 @@
destdir="${build.resources}/exception/META-INF"/>
</ejbdoclet>
+ <!-- aop test -->
+ <mkdir dir="${build.resources}/aop/simpleejb/META-INF"/>
+ <ejbdoclet destdir="${build.gen-src}"
+ ejbspec="2.0"
+ excludedtags="@version,@author">
+ <fileset dir="${source.java}">
+ <include name="org/jboss/test/aop/simpleejb/SimpleBean.java"/>
+ </fileset>
+ <remoteinterface/>
+ <homeinterface/>
+ <deploymentdescriptor xmlencoding="UTF-8"
+ destdir="${build.resources}/aop/simpleejb/META-INF"/>
+ <jboss xmlencoding="UTF-8"
+ version="${default.test.jboss-version}"
+ destdir="${build.resources}/aop/simpleejb/META-INF"/>
+ </ejbdoclet>
</target>
<target name="compile-mbean-sources" depends="init" unless="noxdoclet">
@@ -2251,6 +2267,14 @@
</fileset>
</jar>
+ <!-- build simpleejb.jar -->
+ <jar jarfile="${build.lib}/simpleejb.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/aop/simpleejb/"/>
+ </fileset>
+ <metainf dir="${build.resources}/aop/simpleejb/META-INF/"/>
+ </jar>
+
<jar jarfile="${build.lib}/aoptest.aop"
manifest="${build.etc}/manifest.mf">
<fileset dir="${build.classes}">
@@ -2259,6 +2283,8 @@
<include name="org/jboss/test/aop/bean/TxPOJO.class"/>
<include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/>
<include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/>
+ <include name="org/jboss/test/aop/bean/SimpleBeanInterceptor.class"/>
+ <include name="org/jboss/test/aop/bean/SimpleBeanInterceptorFactory.class"/>
</fileset>
<fileset dir="${build.resources}/aop">
<include name="META-INF/jboss-aop.xml"/>
|