|
From: Scott M S. <st...@us...> - 2002-06-13 17:58:24
|
User: starksm
Date: 02/06/13 10:58:05
Modified: . 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
1.142 +12 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- build.xml 4 Jun 2002 14:13:05 -0000 1.141
+++ build.xml 13 Jun 2002 17:58:05 -0000 1.142
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.141 2002/06/04 14:13:05 biorn_steedom Exp $ -->
+<!-- $Id: build.xml,v 1.142 2002/06/13 17:58:05 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2238,6 +2238,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/**"/>
@@ -2246,10 +2252,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>
|