[jboss-cvs] JBossCache/examples/PojoCache/sensor ...

Manik Surtani msurtani at jboss.com
Sat Dec 30 12:50:05 EST 2006


  User: msurtani
  Date: 06/12/30 12:50:05

  Modified:    examples/PojoCache/sensor  build.xml
  Log:
  Major changes to restructure cache and node object model
  
  Revision  Changes    Path
  1.4       +74 -73    JBossCache/examples/PojoCache/sensor/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/examples/PojoCache/sensor/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- build.xml	25 Sep 2006 08:02:31 -0000	1.3
  +++ build.xml	30 Dec 2006 17:50:05 -0000	1.4
  @@ -1,26 +1,27 @@
   <?xml version="1.0"?>
   
  -<project name="junit examples" default="help" >
  +<project name="junit examples" default="help">
   
     <property name="build.sysclasspath" value="ignore"/>
  -  <property name="junit.timeout" value="180000"/> <!-- 3 minutes -->
  +   <property name="junit.timeout" value="180000"/>
  +   <!-- 3 minutes -->
   
     <property file="./build.properties"/>
   
     <!-- set local properties for this build -->
     <path id="lib.classpath">
         <fileset dir="${lib}">
  -        <include name="**/*.jar" />
  +         <include name="**/*.jar"/>
         </fileset>
         <pathelement path="${build}"/>
     </path>
   
     <target name="help" description="help page">
  -      <echo message="build.sh &lt;command&gt; where command is:" />
  -      <echo message="         compile       -- compile the examples code" />
  -      <echo message="         clobber       -- clean up the whole directory" />
  -      <echo message="         run.aopc.batch -- run batch aop examples with aopc pre-compiler" />
  -      <echo message="         run.aop.demo  -- run demo gui for aop cache" />
  +      <echo message="build.sh &lt;command&gt; where command is:"/>
  +      <echo message="         compile       -- compile the examples code"/>
  +      <echo message="         clobber       -- clean up the whole directory"/>
  +      <echo message="         run.aopc.batch -- run batch aop examples with aopc pre-compiler"/>
  +      <echo message="         run.aop.demo  -- run demo gui for aop cache"/>
     </target>
   
     <!-- set up directory -->
  @@ -28,7 +29,7 @@
       <!-- Create the time stamp -->
       <tstamp/>
       <!-- Create the build directory structure used by compile
  -    and copy the deployment descriptors into it-->
  +and copy the deployment descriptors into it-->
       <mkdir dir="${build}"/>
       <mkdir dir="${reports}"/>
     </target>
  @@ -38,7 +39,7 @@
       <delete dir="${reports}"/>
     </target>
   
  -  <target name="clobber" depends="clean" />
  +   <target name="clobber" depends="clean"/>
   
     <!-- compile directory -->
     <target name="compile" depends="init" description="Build unit testing class">
  @@ -48,7 +49,7 @@
              debug="true"
              deprecation="true">
         <classpath>
  -        <path refid="lib.classpath" />
  +            <path refid="lib.classpath"/>
         </classpath>
       </javac>
   
  @@ -72,20 +73,20 @@
      </target>
   
     <target name="run.aop.example" depends="compile, aopc" description="run standalone server replicator.">
  -    <java classname="test.propagation.PropagationReplAopTest" fork="yes" >
  -      <classpath refid="lib.classpath" />
  -      <classpath path="${build}" />
  -      <classpath path="${output}/etc" />
  +      <java classname="test.propagation.PropagationReplAopTest" fork="yes">
  +         <classpath refid="lib.classpath"/>
  +         <classpath path="${build}"/>
  +         <classpath path="${output}/etc"/>
       </java>
     </target>
   
  -  <target name="run.aop.demo" depends="compile" description="run tree cache demo.">
  +   <target name="run.aop.demo" depends="compile" description="run JBoss Cache demo.">
       <java classname="org.jboss.cache.TreeCacheView" fork="yes">
         <jvmarg value="-Xmx128M"/>
  -      <classpath refid="lib.classpath" />
  +         <classpath refid="lib.classpath"/>
         <sysproperty key="log4j.configuration" value="file:${output}/etc/log4j.xml"/>
  -      <classpath path="${output}/etc" />
  -      <classpath path="${build}" />
  +         <classpath path="${output}/etc"/>
  +         <classpath path="${build}"/>
       </java>
     </target>
   
  
  
  



More information about the jboss-cvs-commits mailing list