[jboss-cvs] JBossCache ...

Brian Stansberry brian.stansberry at jboss.com
Mon Dec 18 15:09:41 EST 2006


  User: bstansberry
  Date: 06/12/18 15:09:41

  Modified:    JBossCache  Tag: Branch_JBossCache_1_4_0 build.xml
  Log:
  Use JG 2.2.7 in the interoptests
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.119.2.19 +16 -2     JBossCache/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/build.xml,v
  retrieving revision 1.119.2.18
  retrieving revision 1.119.2.19
  diff -u -b -r1.119.2.18 -r1.119.2.19
  --- build.xml	16 Dec 2006 13:13:03 -0000	1.119.2.18
  +++ build.xml	18 Dec 2006 20:09:40 -0000	1.119.2.19
  @@ -1,6 +1,6 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
  -<!-- $Id: build.xml,v 1.119.2.18 2006/12/16 13:13:03 ptsekov Exp $ -->
  +<!-- $Id: build.xml,v 1.119.2.19 2006/12/18 20:09:40 bstansberry Exp $ -->
   
   <project default="compile" name="JBossCache">
   
  @@ -140,15 +140,22 @@
         <pathelement location="${compiletest.dir}"/>
         <fileset dir="${lib.dir}">
            <include name="*.jar"/>
  +     	 <exclude name="jgroups.jar"/>
         </fileset>
         <fileset dir="${output.interop.dir}">
            <include name="*.jar"/>
         </fileset>
      </path>
   
  +   <!-- NOTE: replaces the std jgroups version with 2.2.7.  This classpath
  +        is only meant for use in the interoptests target. -->
      <path id="current.version.classpath">
         <fileset dir="${lib.dir}">
            <include name="*.jar"/>
  +      	 <exclude name="jgroups.jar"/>
  +      </fileset>
  +      <fileset dir="${output.interop.dir}">
  +         <include name="jgroups.jar"/>
         </fileset>
         <fileset dir="${sleepycat.dir}">
            <include name="*.jar"/>
  @@ -783,8 +790,15 @@
   
         <!-- Download the cache version against which we check interop -->
         <mkdir dir="${output.interop.dir}"/>
  +   	
         <get dest="${output.interop.dir}/jboss-cache.jar"
              src="http://repository.jboss.com/jboss/cache/1.2.3.1/lib/jboss-cache.jar" verbose="true"/>
  +   	  <!-- 
  +   	       In 1.4.1 we moved to JG 2.4.1 by default, so we need to bring down the old jgroups as well.
  +   	       The current.version.classpath and previous.version.classpath will use the old jgroups.
  +   	  -->
  +      <get dest="${output.interop.dir}/jgroups.jar"
  +           src="http://repository.jboss.com/jgroups/2.2.7/lib/jgroups.jar" verbose="true"/>
   
         <start-interop-target name="previous version" conf="META-INF/interopPrevSync-service.xml"
                               classpath="previous.version.classpath"/>
  
  
  



More information about the jboss-cvs-commits mailing list