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

Manik Surtani msurtani at jboss.com
Sat Dec 30 12:49:59 EST 2006


  User: msurtani
  Date: 06/12/30 12:49:59

  Modified:    examples/PojoCache/loadtime  build.xml
  Log:
  Major changes to restructure cache and node object model
  
  Revision  Changes    Path
  1.5       +92 -91    JBossCache/examples/PojoCache/loadtime/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/examples/PojoCache/loadtime/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- build.xml	21 Nov 2006 14:39:34 -0000	1.4
  +++ build.xml	30 Dec 2006 17:49:59 -0000	1.5
  @@ -1,37 +1,38 @@
   <?xml version="1.0"?>
   
  -<project name="aop examples annotated" default="help" >
  +<project name="aop examples annotated" 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>
   
     <path id="aop.classpath">
         <fileset dir="${lib}">
  -        <include name="javassist.jar" />
  -        <include name="trove.jar" />
  -        <include name="concurrent.jar" />
  -        <include name="jboss-common.jar" />
  -        <include name="jboss-aop-jdk50.jar" />
  -        <include name="log4j.jar" />
  +         <include name="javassist.jar"/>
  +         <include name="trove.jar"/>
  +         <include name="concurrent.jar"/>
  +         <include name="jboss-common.jar"/>
  +         <include name="jboss-aop-jdk50.jar"/>
  +         <include name="log4j.jar"/>
         </fileset>
     </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.aop.example -- run aop examples with annoc and aopc pre-compiler" />
  -      <echo message="         run.aop.demo  -- run demo gui for 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.aop.example -- run aop examples with annoc and aopc pre-compiler"/>
  +      <echo message="         run.aop.demo  -- run demo gui for cache"/>
     </target>
   
     <!-- set up directory -->
  @@ -39,7 +40,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>
  @@ -49,7 +50,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">
  @@ -59,7 +60,7 @@
              debug="true"
              deprecation="true">
         <classpath>
  -        <path refid="lib.classpath" />
  +            <path refid="lib.classpath"/>
         </classpath>
       </javac>
   
  @@ -77,7 +78,7 @@
   
     <target name="run.aop.example" depends="compile" description="run standalone server replicator.">
   
  -    <java classname="test.examples.StudentMaintTest" fork="yes" >
  +      <java classname="test.examples.StudentMaintTest" fork="yes">
   
         <!-- Use jboss aop specific class loader -->
         <jvmarg value="-javaagent:${lib}/jboss-aop-jdk50.jar"/>
  @@ -85,20 +86,20 @@
         <!-- Alternatively aop will find META-INF/pojocache-aop.xml automatically -->
         <jvmarg value="-Djboss.aop.path=${resources}/pojocache-aop.xml;${output}/etc/user-aop.xml"/>
   
  -      <classpath refid="lib.classpath" />
  -      <classpath path="${build}" />
  -      <classpath path="${output}/etc" />
  +         <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