aboutsummaryrefslogtreecommitdiffstats
path: root/docs/build.xml
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-04-02 12:03:40 +0000
committeracolyer <acolyer>2004-04-02 12:03:40 +0000
commit33d8ee9eededcd1219a6cbd1d063af005d40a3f7 (patch)
treed30f882cbab26f54b62dc1cddfab666d97d6bd3d /docs/build.xml
parentfc1c15110e8a9cfafabad0dcc4c10445725c9fb2 (diff)
downloadaspectj-33d8ee9eededcd1219a6cbd1d063af005d40a3f7.tar.gz
aspectj-33d8ee9eededcd1219a6cbd1d063af005d40a3f7.zip
fix for Bugzilla Bug 31460
Weaving class loader
Diffstat (limited to 'docs/build.xml')
-rw-r--r--docs/build.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/build.xml b/docs/build.xml
index d0b8248d0..107da3834 100644
--- a/docs/build.xml
+++ b/docs/build.xml
@@ -166,14 +166,15 @@
</target>
<target name="api" depends="init"
- description="javadoc for AspectJ lang and lang.reflect">
+ description="javadoc for AspectJ lang, lang.reflect and org.aspectj.weaver.tools">
<delete dir="${docs.dist.dir}/doc/api"/>
<mkdir dir="${docs.dist.dir}/doc/api"/>
- <javadoc sourcepath="${aspectj.modules.dir}/runtime/src"
+ <javadoc sourcepath="${aspectj.modules.dir}/runtime/src;${aspectj.modules.dir}/weaver/src"
destdir="${docs.dist.dir}/doc/api"
windowtitle="AspectJ(tm) runtime API"
link="http://java.sun.com/j2se/1.4.2/docs/api"
- packagenames="org.aspectj.lang,org.aspectj.lang.reflect" />
+ classpath="${aspectj.modules.dir}/asm/bin;${aspectj.modules.dir}/bridge/bin;${aspectj.modules.dir}/util/bin;${aspectj.modules.dir}/lib/bcel/bcel.jar"
+ packagenames="org.aspectj.lang,org.aspectj.lang.reflect,org.aspectj.weaver.tools" />
<!-- note: link ineffective at avoiding see tag warning -->
</target>