|
From: Scott M S. <st...@us...> - 2002-09-23 20:25:17
|
User: starksm
Date: 02/09/23 13:25:16
Modified: . build.xml
Log:
Add the https-service.sar build
Revision Changes Path
1.177 +12 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- build.xml 14 Sep 2002 19:38:53 -0000 1.176
+++ build.xml 23 Sep 2002 20:25:16 -0000 1.177
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.176 2002/09/14 19:38:53 d_jencks Exp $ -->
+<!-- $Id: build.xml,v 1.177 2002/09/23 20:25:16 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2697,6 +2697,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>
|