|
From: Bill B. <pat...@us...> - 2003-04-02 03:29:13
|
User: patriot1burke
Date: 03/04/01 19:29:12
Modified: . build.xml
Log:
security testing for AOP
Revision Changes Path
1.233 +8 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- build.xml 31 Mar 2003 21:55:41 -0000 1.232
+++ build.xml 2 Apr 2003 03:29:12 -0000 1.233
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.232 2003/03/31 21:55:41 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.233 2003/04/02 03:29:12 patriot1burke Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -2279,6 +2279,7 @@
<fileset dir="${build.classes}">
<include name="org/jboss/test/aop/bean/NoInterceptorsPOJO*.class"/>
<include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/>
+ <include name="org/jboss/test/aop/bean/SecuredPOJO.class"/>
<include name="org/jboss/test/aop/bean/SomeException.class"/>
<include name="org/jboss/test/aop/bean/POJO*.class"/>
<include name="org/jboss/test/aop/bean/TxPOJO.class"/>
@@ -2304,6 +2305,8 @@
<include name="org/jboss/test/aop/bean/AOPTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/RemotingTester.class"/>
<include name="org/jboss/test/aop/bean/RemotingTesterMBean.class"/>
+ <include name="org/jboss/test/aop/bean/SecurityTester.class"/>
+ <include name="org/jboss/test/aop/bean/SecurityTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/TxTester.class"/>
<include name="org/jboss/test/aop/bean/TxTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/TxLockTester.class"/>
@@ -2312,6 +2315,10 @@
<include name="org/jboss/test/aop/bean/VersionedObjectTesterMBean.class"/>
<include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/>
<include name="org/jboss/test/aop/bean/AfterInterceptor.class"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop">
+ <include name="users.properties"/>
+ <include name="roles.properties"/>
</fileset>
<fileset dir="${build.resources}/aop">
<include name="**/jboss-service.xml"/>
|