User: starksm 
  Date: 02/03/22 19:55:09

  Modified:    .        build.xml
  Log:
  Add jce to javac classpath
  
  Revision  Changes    Path
  1.95      +10 -1     jbosstest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/build.xml,v
  retrieving revision 1.94
  retrieving revision 1.95
  diff -u -r1.94 -r1.95
  --- build.xml 17 Mar 2002 12:56:27 -0000      1.94
  +++ build.xml 23 Mar 2002 03:55:08 -0000      1.95
  @@ -28,7 +28,7 @@
   <!--            tests-jmxri-compliance still needs to run over jmxri.jar -->
   <!--            the aim of that test is to check our compliance suite.   -->
   
  -<!-- $Id: build.xml,v 1.94 2002/03/17 12:56:27 ejort Exp $ -->
  +<!-- $Id: build.xml,v 1.95 2002/03/23 03:55:08 starksm Exp $ -->
   
   <project default="main" name="JBoss/Testsuite">
   
  @@ -115,6 +115,13 @@
         <pathelement path="${sun.jaas.lib}/jaas.jar"/>
       </path>
   
  +    <!-- Java Cryptography Extension (JCE) -->
  +    <property name="sun.jce.root" value="${project.thirdparty}/sun/jce"/>
  +    <property name="sun.jce.lib" value="${sun.jce.root}/lib"/>
  +    <path id="sun.jce.classpath">
  +      <pathelement path="${sun.jce.lib}/jce1_2_1.jar"/>
  +    </path>
  +
       <!-- JavaMail -->
       <property name="sun.javamail.root" value="${project.thirdparty}/sun/javamail"/>
       <property name="sun.javamail.lib" value="${sun.javamail.root}/lib"/>
  @@ -182,6 +189,7 @@
   <!--  <path refid="sun.jmx.classpath"/> -->
         <path refid="sun.jaxp.classpath"/>
         <path refid="sun.jaas.classpath"/>
  +      <path refid="sun.jce.classpath"/>
         <path refid="sun.javamail.classpath"/>
         <path refid="sun.servlet.classpath"/>
         <path refid="apache.log4j.classpath"/>
  @@ -2538,6 +2546,7 @@
                 fork="${junit.batchtest.fork}">
   
           <fileset dir="${build.classes}">
  +          <exclude name="**/test/security/test/SRPUnitTestCase.class"/>
             <include name="**/test/security/test/**UnitTestCase.class"/>
           </fileset>
         </batchtest>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to