|
From: Scott M S. <st...@us...> - 2002-10-05 02:05:24
|
User: starksm
Date: 02/10/04 19:05:23
Modified: . Tag: Branch_3_2 build.xml
Log:
Add the https-service.sar target
Revision Changes Path
No revision
No revision
1.165.2.9 +12 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.8
retrieving revision 1.165.2.9
diff -u -r1.165.2.8 -r1.165.2.9
--- build.xml 2 Oct 2002 20:58:58 -0000 1.165.2.8
+++ build.xml 5 Oct 2002 02:05:23 -0000 1.165.2.9
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.8 2002/10/02 20:58:58 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.9 2002/10/05 02:05:23 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2750,6 +2750,17 @@
</fileset>
<fileset dir="${build.lib}">
<include name="security-srp.jar"/>
+ </fileset>
+ </jar>
+
+ <!-- build https-service.sar -->
+ <jar jarfile="${build.lib}/https-service.sar">
+ <metainf dir="${build.resources}/security/META-INF"/>
+ <metainf dir="${build.resources}/security">
+ <include name="tst.keystore"/>
+ </metainf>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/security/service/Https*.class"/>
</fileset>
</jar>
|