[jboss-cvs] JBossAS SVN: r79674 - in projects/aop/trunk/aop/docs/examples: after-throwing and 41 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Oct 17 16:39:28 EDT 2008


Author: flavia.rainone at jboss.com
Date: 2008-10-17 16:39:28 -0400 (Fri, 17 Oct 2008)
New Revision: 79674

Modified:
   projects/aop/trunk/aop/docs/examples/after-throwing/build.xml
   projects/aop/trunk/aop/docs/examples/all/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-injboss/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml
   projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml
   projects/aop/trunk/aop/docs/examples/annotation/build.xml
   projects/aop/trunk/aop/docs/examples/arrayinterception/build.xml
   projects/aop/trunk/aop/docs/examples/aspect/build.xml
   projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml
   projects/aop/trunk/aop/docs/examples/beforeafter/build.xml
   projects/aop/trunk/aop/docs/examples/caller/build.xml
   projects/aop/trunk/aop/docs/examples/cflow/build.xml
   projects/aop/trunk/aop/docs/examples/composition/build.xml
   projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml
   projects/aop/trunk/aop/docs/examples/declare/build.xml
   projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml
   projects/aop/trunk/aop/docs/examples/dynamic-cflow/build.xml
   projects/aop/trunk/aop/docs/examples/examples-build.xml
   projects/aop/trunk/aop/docs/examples/field-execution/build.xml
   projects/aop/trunk/aop/docs/examples/finally/build.xml
   projects/aop/trunk/aop/docs/examples/implements/build.xml
   projects/aop/trunk/aop/docs/examples/injboss/build.xml
   projects/aop/trunk/aop/docs/examples/instanceof/build.xml
   projects/aop/trunk/aop/docs/examples/introductions/build.xml
   projects/aop/trunk/aop/docs/examples/ioc-with-has/build.xml
   projects/aop/trunk/aop/docs/examples/logging/build.xml
   projects/aop/trunk/aop/docs/examples/metadata/build.xml
   projects/aop/trunk/aop/docs/examples/method-execution/build.xml
   projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml
   projects/aop/trunk/aop/docs/examples/packaging/build.xml
   projects/aop/trunk/aop/docs/examples/precedence/build.xml
   projects/aop/trunk/aop/docs/examples/return-types/build.xml
   projects/aop/trunk/aop/docs/examples/stacks/build.xml
   projects/aop/trunk/aop/docs/examples/typedef/build.xml
Log:
[JBAOP-668] Renamed the tutorial example ant tasks removing the .50 part of their names. Removed jdk15 comments from the builds.

Modified: projects/aop/trunk/aop/docs/examples/after-throwing/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/after-throwing/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/after-throwing/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/all/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/all/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/all/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-injboss/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-injboss/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-injboss/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -67,7 +67,7 @@
       </path>
 
       <path id="classpath">
-         <path refid="jboss.aop.classpath50"/>
+         <path refid="jboss.aop.classpath"/>
          <path refid="jboss.classpath"/>
          <pathelement path="."/>
       </path>
@@ -79,7 +79,7 @@
       <mkdir dir="${lib.dir}"/>
       <mkdir dir="${basic.web.out.dir}"/>
       <mkdir dir="${ear.web.out.dir}"/>
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
    </target>
 
    <target name="compile" depends="prepare">

Modified: projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+   <target name="run.aopc" depends="_run.aopc.annotated"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+   <target name="run.loadtime" depends="_run.loadtime.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotation/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotation/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/arrayinterception/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/arrayinterception/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/arrayinterception/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/aspect/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/aspect/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/aspect/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/beforeafter/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beforeafter/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/beforeafter/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/caller/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/caller/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/caller/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/cflow/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/cflow/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/composition/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/composition/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/composition/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/declare/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/declare/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/declare/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/dynamic-cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic-cflow/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/dynamic-cflow/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/examples-build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/examples-build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/examples-build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -8,8 +8,8 @@
 
    <target name="usage">
       <echo>Run one of the following targets:</echo>
-      <echo> ant run.aopc.50          Run with compile-time weaving with JDK 5</echo>
-      <echo> ant run.loadtime.50      Run with loadtime weaving with JDK 5</echo>
+      <echo> ant run.aopc          Run with compile-time weaving</echo>
+      <echo> ant run.loadtime      Run with loadtime weaving</echo>
    </target>
 
    <target name="_prepare"
@@ -18,16 +18,16 @@
       <property name="jboss.aop.root" value="../../../.."/>
       <property name="jboss.aop.lib" value="${jboss.aop.root}/lib"/>
 
-      <path id="jboss.aop.classpath50">
+      <path id="jboss.aop.classpath">
          <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
          </fileset>
       </path>
 
-      <property name="aop50jar" value="${jboss.aop.lib}/jboss-aop.jar"/>
+      <property name="aopjar" value="${jboss.aop.lib}/jboss-aop.jar"/>
 
-      <path id="classpath50">
-         <path refid="jboss.aop.classpath50"/>
+      <path id="classpath">
+         <path refid="jboss.aop.classpath"/>
          <pathelement path="."/>
       </path>
 
@@ -39,8 +39,8 @@
    </target>
 
 
-   <target name="_compile50" depends="_prepare"
-      description="Compile the sources with JDK 5">
+   <target name="_compile" depends="_prepare"
+      description="Compile the sources">
 
       <javac srcdir="."
          destdir="."
@@ -48,16 +48,16 @@
          deprecation="on"
          optimize="off"
          includes="**">
-        <classpath refid="classpath50"/>
+        <classpath refid="classpath"/>
       </javac>
    </target>
 
-   <target name="_aopc50" depends="_compile50"
-      description="Compile-time weave the classes (JDK 5) using a jboss-aop.xml file">
+   <target name="_aopc" depends="_compile"
+      description="Compile-time weave the classes using a jboss-aop.xml file">
 
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
 
-      <aopc compilerclasspathref="classpath50" classpathref="classpath50">
+      <aopc compilerclasspathref="classpath" classpathref="classpath">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <classpath path="."/>
          <src path="."/>
@@ -66,12 +66,12 @@
    </target>
 
 
-   <target name="_aopc50.annotated" depends="_compile50"
-      description="Compile-time weave the classes (JDK 5) using annotations to configure">
+   <target name="_aopc.annotated" depends="_compile"
+      description="Compile-time weave the classes using annotations to configure">
 
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
 
-      <aopc compilerclasspathref="classpath50" classpathref="classpath50">
+      <aopc compilerclasspathref="classpath" classpathref="classpath">
          <sysproperty key="jboss.aop.class.path" value="."/>
          <classpath path="."/>
          <src path="."/>
@@ -82,43 +82,43 @@
 
    <!-- These are the main targets to be used -->
 
-   <target name="_run.aopc.50" depends="_aopc50"
-      description="Run the example using compile-time weaving on JDK 5, using a jboss-aop.xml file">
+   <target name="_run.aopc" depends="_aopc"
+      description="Run the example using compile-time weaving with the jboss-aop.xml configuration file enabled">
 
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
-         <classpath refid="classpath50"/>
+         <classpath refid="classpath"/>
       </java>
    </target>
 
 
-   <target name="_run.aopc.50.annotated" depends="_aopc50.annotated"
-      description="Run the example using compile-time weaving on JDK 5, using annotations to configure">
+   <target name="_run.aopc.annotated" depends="_aopc.annotated"
+      description="Run the example using compile-time weaving with annotation configuration enabled">
 
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.class.path" value="."/>
-         <classpath refid="classpath50"/>
+         <classpath refid="classpath"/>
       </java>
    </target>
 
-   <target name="_run.loadtime.50" depends="_compile50"
-      description="Run the example using loadtime-time weaving on JDK 5, using a jboss-aop.xml file">
+   <target name="_run.loadtime" depends="_compile"
+      description="Run the example using loadtime-time weaving with the jboss-aop.xml configuration file enabled">
 
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
-         <classpath refid="classpath50"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
+         <classpath refid="classpath"/>
       </java>
    </target>
 
 
-   <target name="_run.loadtime.50.annotated" depends="_compile50"
-      description="Run the example using loadtime-time weaving on JDK 5, using annotations to configure">
+   <target name="_run.loadtime.annotated" depends="_compile"
+      description="Run the example using loadtime-time weaving with annotation configuration enabled">
 
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.class.path" value="."/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
-         <classpath refid="classpath50"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
+         <classpath refid="classpath"/>
       </java>
    </target>
 

Modified: projects/aop/trunk/aop/docs/examples/field-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/field-execution/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/field-execution/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/finally/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/finally/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/finally/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/implements/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/implements/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/implements/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/injboss/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/injboss/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/injboss/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -9,7 +9,7 @@
 
    <target name="prepare" depends="_prepare">
       <!-- Set jboss.dir property to root of your JBoss distribution -->
-      <property name="jboss.dir" value="C:/temp/jboss-4.0.5.GA"/>
+      <property name="jboss.dir" value="C:/temp/jboss-4.2.3.GA"/>
         <!--
            Set jboss.server.config property to either default or all.
               if you set this to default, JBoss should be started with
@@ -67,7 +67,7 @@
       </path>
 
       <path id="classpath">
-         <path refid="jboss.aop.classpath50"/>
+         <path refid="jboss.aop.classpath"/>
          <path refid="jboss.classpath"/>
          <pathelement path="."/>
       </path>
@@ -79,7 +79,7 @@
       <mkdir dir="${lib.dir}"/>
       <mkdir dir="${basic.web.out.dir}"/>
       <mkdir dir="${ear.web.out.dir}"/>
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
    </target>
 
    <target name="compile" depends="prepare">

Modified: projects/aop/trunk/aop/docs/examples/instanceof/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/instanceof/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/instanceof/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/introductions/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/introductions/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/introductions/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/ioc-with-has/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/ioc-with-has/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/ioc-with-has/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/logging/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/logging/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/logging/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -4,22 +4,22 @@
    <import file="../examples-build.xml"/>
 	
    <target name="usage_">
-      <echo>Run one of the following targets (use JDK 5):</echo>
-      <echo> ant run.loadtime.50.nologging            Run with loadtime weaving and no logging</echo>
-      <echo> ant run.loadtime.50.system.out.logging   Run with loadtime weaving and logging via System.out</echo>
-      <echo> ant run.loadtime.50.log4j.logging        Run with loadtime weaving and logging via log4j</echo>
-      <echo> ant run.aopc.50.nologging                Run with compile-time weaving and no logging</echo>
-      <echo> ant run.aopc.50.system.out.logging       Run with compile-time weaving and logging via System.out</echo>
-      <echo> ant run.aopc.50.log4j.logging            Run with compile-time weaving and logging via log4j</echo>
+      <echo>Run one of the following targets:</echo>
+      <echo> ant run.loadtime.nologging            Run with loadtime weaving and no logging</echo>
+      <echo> ant run.loadtime.system.out.logging   Run with loadtime weaving and logging via System.out</echo>
+      <echo> ant run.loadtime.log4j.logging        Run with loadtime weaving and logging via log4j</echo>
+      <echo> ant run.aopc.nologging                Run with compile-time weaving and no logging</echo>
+      <echo> ant run.aopc.system.out.logging       Run with compile-time weaving and logging via System.out</echo>
+      <echo> ant run.aopc.log4j.logging            Run with compile-time weaving and logging via log4j</echo>
    </target>
    
-   <target name="run.loadtime.50.nologging" depends="_compile50">
+   <target name="run.loadtime.nologging" depends="_compile">
       <!-- 
          We exclude log4j.jar and jboss-logging-log4j.jar, which does not make a difference
          since we do not use logging anyway
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
             <exclude name="log4j.jar"/>
             <exclude name="jboss-logging-log4j.jar"/>
@@ -34,18 +34,18 @@
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <!-- Include this for clarity, the default is false -->
          <sysproperty key="jboss.aop.verbose" value="false"/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
          <classpath refid="run.classpath"/>
       </java>
    </target>
 
-   <target name="run.loadtime.50.system.out.logging" depends="_compile50">
+   <target name="run.loadtime.system.out.logging" depends="_compile">
       <!-- 
          We exclude log4j.jar and jboss-logging-log4j.jar, so when we turn on logging 
          we will just write to System.out
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
             <exclude name="log4j.jar"/>
             <exclude name="jboss-logging-log4j.jar"/>
@@ -60,18 +60,18 @@
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <!-- Turn logging on -->
          <sysproperty key="jboss.aop.verbose" value="true"/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
          <classpath refid="run.classpath"/>
       </java>
    </target>
 
-   <target name="run.loadtime.50.log4j.logging" depends="_compile50">
+   <target name="run.loadtime.log4j.logging" depends="_compile">
       <!-- 
          We include log4j.jar and jboss-logging-log4j.jar, so when we turn on logging the 
          we will use log4j configured with a log4j.properties file
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
          </fileset>
          <!-- We need a log4j.properties on the classpath -->
@@ -86,18 +86,18 @@
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <!-- Turn logging on -->
          <sysproperty key="jboss.aop.verbose" value="true"/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
          <classpath refid="run.classpath"/>
       </java>
    </target>
 
-   <target name="aopc.no.logging" depends="_compile50">
+   <target name="aopc.no.logging" depends="_compile">
       <!-- 
          We exclude log4j.jar and jboss-logging-log4j.jar, which does not make a difference
          since we do not use logging anyway
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
             <exclude name="log4j.jar"/>
             <exclude name="jboss-logging-log4j.jar"/>
@@ -119,20 +119,20 @@
       </aopc>   
    </target>  
    
-   <target name="run.aopc.50.nologging" depends="aopc.no.logging">
+   <target name="run.aopc.nologging" depends="aopc.no.logging">
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <classpath refid="run.classpath"/>
       </java>
    </target>
    
-   <target name="aopc.system.out.logging" depends="_compile50">
+   <target name="aopc.system.out.logging" depends="_compile">
       <!-- 
          We exclude log4j.jar and jboss-logging-log4j.jar, so when we turn on logging 
          we will just write to System.out
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
             <exclude name="log4j.jar"/>
             <exclude name="jboss-logging-log4j.jar"/>
@@ -154,7 +154,7 @@
       </aopc>
    </target>
   
-   <target name="run.aopc.50.system.out.logging" depends="aopc.system.out.logging">
+   <target name="run.aopc.system.out.logging" depends="aopc.system.out.logging">
    
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
@@ -164,13 +164,13 @@
       </java>
    </target>
 
-   <target name="aopc.log4j.logging" depends="_compile50">
+   <target name="aopc.log4j.logging" depends="_compile">
       <!-- 
          We include log4j.jar and jboss-logging-log4j.jar, so when we turn on logging the 
          we will use log4j configured with a log4j.properties file
       -->
       <path id="aop.classpath">
-         <fileset dir="${jboss.aop.lib50}">
+         <fileset dir="${jboss.aop.lib}">
             <include name="*.jar"/>
          </fileset>
          <!-- We need a log4j.properties on the classpath -->
@@ -192,7 +192,7 @@
       </aopc>
    </target>
 
-   <target name="run.aopc.50.log4j.logging" depends="aopc.log4j.logging">
+   <target name="run.aopc.log4j.logging" depends="aopc.log4j.logging">
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <!-- Turn on logging although nothing is really being woven at runtime -->  

Modified: projects/aop/trunk/aop/docs/examples/metadata/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/metadata/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/metadata/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -4,10 +4,10 @@
 
    <import file="../examples-build.xml"/>
 
-   <target name="aopc50" depends="_compile50">
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+   <target name="aopc" depends="_compile">
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
 
-      <aopc compilerclasspathref="classpath50" classpathref="classpath50" verbose="true">
+      <aopc compilerclasspathref="classpath" classpathref="classpath" verbose="true">
          <classpath path="."/>
          <src path="."/>
          <aoppath>
@@ -18,18 +18,18 @@
 
    </target>
 
-   <target name="run.aopc.50" depends="aopc50">
+   <target name="run.aopc" depends="aopc">
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="metadata-aop.xml${path.separator}jboss-aop.xml"/>
-         <classpath refid="classpath50"/>
+         <classpath refid="classpath"/>
       </java>
    </target>
 
-   <target name="run.loadtime.50" depends="_compile50">
+   <target name="run.loadtime" depends="_compile">
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="metadata-aop.xml${path.separator}jboss-aop.xml"/>
-         <classpath refid="classpath50"/>
-         <jvmarg value="-javaagent:${aop50jar}"/>
+         <classpath refid="classpath"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
       </java>
    </target>
 

Modified: projects/aop/trunk/aop/docs/examples/method-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/method-execution/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/method-execution/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/packaging/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/packaging/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/packaging/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,20 +3,20 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="_aopc50.private" depends="_compile50"
-      description="Compile-time weave the classes (JDK 5) using a jboss-aop.xml file">
+   <target name="_aopc.private" depends="_compile"
+      description="Compile-time weave the classes with the jboss-aop.xml configuration file enabled">
 
-      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/>
 
-      <aopc compilerclasspathref="classpath50" classpathref="classpath50" verbose="true">
+      <aopc compilerclasspathref="classpath" classpathref="classpath" verbose="true">
          <sysproperty key="jboss.aop.verbose" value="true"/>
          <classpath path="."/>
          <src path="."/>
       </aopc>
    </target>
 
-   <target name="run.aopc.50" depends="_aopc50.private"
-      description="Run the example using compile-time weaving on JDK 5, using a jboss-aop.xml file">
+   <target name="run.aopc" depends="_aopc.private"
+      description="Run the example using compile-time weaving with the jboss-aop.xml configuration file enabled">
 
       <jar jarfile="example.jar">
          <fileset dir=".">
@@ -31,13 +31,13 @@
 
       
       <java fork="yes" failOnError="true" className="Driver">
-         <classpath refid="jboss.aop.classpath50"/>
+         <classpath refid="jboss.aop.classpath"/>
          <classpath path="example.jar"/>
       </java>
    </target>
 
-   <target name="run.loadtime.50" depends="_compile50"
-      description="Run the example using loadtime-time weaving on JDK 5, using a jboss-aop.xml file">
+   <target name="run.loadtime" depends="_compile"
+      description="Run the example using loadtime-time weaving with the jboss-aop.xml configuration file enabled">
 
       <jar jarfile="example.jar">
          <fileset dir=".">
@@ -51,8 +51,8 @@
       </delete>
       
       <java fork="yes" failOnError="true" className="Driver">
-         <jvmarg value="-javaagent:${aop50jar}"/>
-         <classpath refid="jboss.aop.classpath50"/>
+         <jvmarg value="-javaagent:${aopjar}"/>
+         <classpath refid="jboss.aop.classpath"/>
          <classpath path="example.jar"/>
       </java>
    </target>

Modified: projects/aop/trunk/aop/docs/examples/precedence/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/precedence/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/precedence/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/return-types/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/return-types/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/return-types/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,7 +3,7 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/stacks/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/stacks/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/stacks/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 

Modified: projects/aop/trunk/aop/docs/examples/typedef/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/typedef/build.xml	2008-10-17 20:27:37 UTC (rev 79673)
+++ projects/aop/trunk/aop/docs/examples/typedef/build.xml	2008-10-17 20:39:28 UTC (rev 79674)
@@ -3,8 +3,8 @@
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
 
-   <target name="run.aopc.50" depends="_run.aopc.50"/>
+   <target name="run.aopc" depends="_run.aopc"/>
 
-   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+   <target name="run.loadtime" depends="_run.loadtime"/>
 </project>
 




More information about the jboss-cvs-commits mailing list