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

Ben Wang bwang at jboss.com
Fri Jan 5 22:51:00 EST 2007


  User: bwang   
  Date: 07/01/05 22:51:00

  Modified:    examples/PojoCache/annotated50   build.xml readme.txt
  Log:
  upd
  
  Revision  Changes    Path
  1.7       +3 -12     JBossCache/examples/PojoCache/annotated50/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/examples/PojoCache/annotated50/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- build.xml	30 Dec 2006 17:50:06 -0000	1.6
  +++ build.xml	6 Jan 2007 03:51:00 -0000	1.7
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<project name="aop examples JDK50 annotated" default="help">
  +<project name="PojoCache examples JDK50 annotated" default="help">
   
      <property name="build.sysclasspath" value="ignore"/>
      <!-- 3 minutes -->
  @@ -37,7 +37,7 @@
         <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.example -- run aop examples with annoc and aopc pre-compiler"/>
  +      <echo message="         run.compiletime.example -- run examples with annoc and aopc pre-compiler"/>
      </target>
   
      <!-- set up directory -->
  @@ -84,7 +84,7 @@
         </java>
      </target>
   
  -   <target name="run.aopc.example" depends="compile, aopc" description="run standalone server replicator.">
  +   <target name="run.compiletime.example" depends="compile, aopc" description="run standalone server replicator.">
         <java classname="test.examples.StudentMaintTest" fork="yes">
            <classpath refid="lib.classpath"/>
            <classpath path="${build}"/>
  @@ -92,15 +92,6 @@
         </java>
      </target>
   
  -   <target name="run.aop.demo" depends="compile" description="run JBoss Cache demo.">
  -      <java classname="org.jboss.cache.aop.TreeCacheView" fork="yes">
  -         <jvmarg value="-Xmx128M"/>
  -         <classpath refid="lib.classpath"/>
  -         <sysproperty key="log4j.configuration" value="file:${output}/etc/log4j.xml"/>
  -         <classpath path="${output}/etc"/>
  -         <classpath path="${build}"/>
  -      </java>
  -   </target>
   
   
   </project>
  
  
  
  1.6       +4 -4      JBossCache/examples/PojoCache/annotated50/readme.txt
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: readme.txt
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/examples/PojoCache/annotated50/readme.txt,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- readme.txt	21 Nov 2006 06:08:40 -0000	1.5
  +++ readme.txt	6 Jan 2007 03:51:00 -0000	1.6
  @@ -6,9 +6,9 @@
   the necessary domain model classes have been annotated with
   @org.jboss.cache.pojo.annotation.Replicable annotation.
   
  -You can run either using loadtime mode ("run.aop.example"), meaning there is
  +You can run either using loadtime mode ("run.loadtime.example"), meaning there is
   no need for pre-compilation once you have annotated your POJOs, or using
  -compilation mode ("run.aopc.example") where another Ant target "aopc" has
  +compilation mode ("run.compiletime.example") where another Ant target "aopc" has
   been invoked first.
   
   The example involves 4 domain model classes, Person, Student, Address
  @@ -32,7 +32,7 @@
   
   1. Run "build.bat compile" to do a standard Java compilation.
   
  -2. Run "build.bat run.aop.example" (or run.aopc.example) to run the example.
  -The run.aopc.example Ant target depends on "aopc", so calling it will cause
  +2. Run "build.bat run.loadtime.example" (or run.compiletime.example) to run the example.
  +The run.compiletime.example Ant target depends on "aopc", so calling it will cause
   "compile" and "aopc" to run as well.
   
  
  
  



More information about the jboss-cvs-commits mailing list