diff options
Diffstat (limited to 'docs/dist')
-rw-r--r-- | docs/dist/doc/examples/build.xml | 5 | ||||
-rw-r--r-- | docs/dist/doc/examples/ltw/README | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/docs/dist/doc/examples/build.xml b/docs/dist/doc/examples/build.xml index 779bea195..5dbea8f19 100644 --- a/docs/dist/doc/examples/build.xml +++ b/docs/dist/doc/examples/build.xml @@ -73,6 +73,8 @@ location="${aspectj.lib.dir}/aspectjrt.jar"/> <property name="aspectjtools.jar" location="${aspectj.lib.dir}/aspectjtools.jar"/> + <property name="aspectjweaver.jar" + location="${aspectj.lib.dir}/aspectjweaver.jar"/> <!-- created directories --> <property name="classes.dir" @@ -440,8 +442,7 @@ <java classname="tracing.ExampleMain" fork="true"> <classpath> - <pathelement path="${aspectjrt.jar}"/> - <pathelement path="${aspectjtools.jar}"/> + <pathelement path="${aspectjweaver.jar}"/> </classpath> <jvmarg line="-showversion"/> <sysproperty key="java.system.class.loader" value="org.aspectj.weaver.WeavingURLClassLoader"/> diff --git a/docs/dist/doc/examples/ltw/README b/docs/dist/doc/examples/ltw/README index bbeb56290..92011019e 100644 --- a/docs/dist/doc/examples/ltw/README +++ b/docs/dist/doc/examples/ltw/README @@ -1,6 +1,7 @@ -This directory contains a script "aj" to demonstrate load-time weaving. Java
-classes on the CLASSPATH are loaded and woven with aspects on the ASPECTPATH.
+The bin directory of your AspectJ distribution contains a script "aj" to
+perform load-time weaving. Java classes on the CLASSPATH are loaded and
+woven with aspects on the ASPECTPATH.
This feature is only supported on JDK 1.4 and later.
--To compile the tracing example--
|