|
From: Scott M S. <st...@us...> - 2002-06-13 17:57:26
|
User: starksm
Date: 02/06/13 10:57:25
Modified: . Tag: Branch_3_0 build.xml
Log:
Include a security config service in the security-spec.jar so that a custom
security config can be installed and removed with the testcase
Revision Changes Path
No revision
No revision
1.106.2.23 +12 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.22
retrieving revision 1.106.2.23
diff -u -r1.106.2.22 -r1.106.2.23
--- build.xml 29 May 2002 22:16:17 -0000 1.106.2.22
+++ build.xml 13 Jun 2002 17:57:25 -0000 1.106.2.23
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.22 2002/05/29 22:16:17 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.23 2002/06/13 17:57:25 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2186,6 +2186,12 @@
</jar>
<!-- build security-spec.jar -->
+ <jar jarfile="${build.lib}/security-spec.sar">
+ <metainf dir="${build.resources}/security-spec/service-inf" />
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/security/service/SecurityConfig*.class"/>
+ </fileset>
+ </jar>
<jar jarfile="${build.lib}/security-spec.jar">
<fileset dir="${build.classes}">
<include name="org/jboss/test/security/interfaces/**"/>
@@ -2194,10 +2200,13 @@
<include name="org/jboss/test/security/test/PermissionName*"/>
</fileset>
<fileset dir="${build.resources}/security-spec">
- <include name="**/ejb-jar.xml" />
- <include name="**/jboss.xml" />
+ <include name="META-INF/ejb-jar.xml" />
+ <include name="META-INF/jboss.xml" />
<include name="users.properties"/>
<include name="roles.properties"/>
+ </fileset>
+ <fileset dir="${build.lib}">
+ <include name="security-spec.sar"/>
</fileset>
</jar>
|