aboutsummaryrefslogtreecommitdiff
path: root/buildScripts/website.ant.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2022-01-25 16:48:26 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2022-01-25 16:49:18 +0100
commit6f351dfe1a32e2e8b0be76ff07972eb2a910846c (patch)
treef1956150c903115fc5a923d1c24980d9d111d82e /buildScripts/website.ant.xml
parent4194424bf966c4da91e9cf2df4776a5d4932eab1 (diff)
downloadlombok-6f351dfe1a32e2e8b0be76ff07972eb2a910846c.tar.gz
lombok-6f351dfe1a32e2e8b0be76ff07972eb2a910846c.tar.bz2
lombok-6f351dfe1a32e2e8b0be76ff07972eb2a910846c.zip
[build] Generation of the javadoc was broken
We've split up the build dirs for various phases of the lombok compile process, and evidently `javadoc` doesn't work unless it can find all types involved on the classpath, even for types that only show up internally. I was thinking javadoc should just look at (protected/public) signatures, not internals, but, alas.
Diffstat (limited to 'buildScripts/website.ant.xml')
-rw-r--r--buildScripts/website.ant.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml
index 1fc58fd4..f5956a45 100644
--- a/buildScripts/website.ant.xml
+++ b/buildScripts/website.ant.xml
@@ -218,6 +218,7 @@ such as applying the templates to produce the website, converting the changelog
<package name="lombok.experimental" />
<package name="lombok.extern.*" />
<classpath location="build/lombok-main" />
+ <classpath location="build/lombok-utils" />
<header><![CDATA[<a href='https://projectlombok.org/' target='_blank'>Lombok</a> - ]]>v${lombok.version}</header>
<bottom><![CDATA[<i>Copyright &copy; 2009-${javadoc.year} The Project Lombok Authors, licensed under the <a href='http://www.opensource.org/licenses/mit-license.php' target='_blank'>MIT licence</a>.]]></bottom>
</javadoc>