|
From: Scott M S. <st...@us...> - 2003-05-04 19:30:27
|
User: starksm
Date: 03/05/04 12:30:25
Modified: . Tag: Branch_3_2 build.xml
Log:
Update the security-proxy.jar target
Revision Changes Path
No revision
No revision
1.165.2.62 +5 -10 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.61
retrieving revision 1.165.2.62
diff -u -r1.165.2.61 -r1.165.2.62
--- build.xml 30 Apr 2003 00:07:58 -0000 1.165.2.61
+++ build.xml 4 May 2003 19:30:23 -0000 1.165.2.62
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.61 2003/04/30 00:07:58 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.62 2003/05/04 19:30:23 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3020,22 +3020,17 @@
<!-- build security-proxy.jar -->
<jar jarfile="${build.lib}/security-proxy.jar">
<fileset dir="${build.classes}">
- <include name="org/jboss/test/security/ejb/EntityBeanImpl.class"/>
<include name="org/jboss/test/security/ejb/IOStatelessSessionBean.class"/>
<include name="org/jboss/test/security/ejb/IOStatefulSessionBean.class"/>
- <include name="org/jboss/test/security/interfaces/Entity.class"/>
- <include name="org/jboss/test/security/interfaces/EntityHome.class"/>
<include name="org/jboss/test/security/interfaces/IOSession.class"/>
<include name="org/jboss/test/security/interfaces/IOSessionHome.class"/>
- <include name="org/jboss/test/security/proxy/EntitySecurityProxy.class"/>
+ <include name="org/jboss/test/security/interfaces/ReadAccessException.class"/>
<include name="org/jboss/test/security/proxy/SessionSecurityProxy.class"/>
</fileset>
- <fileset dir="${build.resources}/security-spec">
- <include name="**/ejb-jar.xml" />
- <include name="**/jboss.xml" />
- <include name="users.properties"/>
- <include name="roles.properties"/>
+ <fileset dir="${build.resources}/security-proxy">
+ <include name="*.properties" />
</fileset>
+ <metainf dir="${build.resources}/security-proxy/META-INF" />
</jar>
<!-- build securitymgr-ejb.jar -->
|