aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-09-03 23:11:04 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-09-03 23:11:04 +0200
commit02f8fbc13b7deff36e041d50d1de365d20bd192b (patch)
tree34307edc1c3c0f305ce1358b8db78b7d3a362cb0 /build.xml
parent9f691c56be7dbfb8aab69a6dbe16d81d44f47654 (diff)
downloadlombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.tar.gz
lombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.tar.bz2
lombok-02f8fbc13b7deff36e041d50d1de365d20bd192b.zip
Added a bunch of javadoc. No other changes.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 2c3bebb0..9e6c00d4 100644
--- a/build.xml
+++ b/build.xml
@@ -231,7 +231,14 @@
<delete dir="build/api" quiet="true" />
<delete dir="doc/api" quiet="true" />
<mkdir dir="build/api" />
- <javadoc sourcepath="src" defaultexcludes="yes" destdir="build/api" windowtitle="Lombok">
+ <property name="javadoc.overview.html" location="build/javadoc.overview.html" />
+ <echo file="${javadoc.overview.html}"><![CDATA[<html><body>
+ Welcome to the lombok javadoc.&nbsp;If you're just looking to learn more about using lombok
+ You probably want to look at <a href="http://projectlombok.org/features/index.html">the feature documentation</a>.&nbsp;Otherwise,
+ check the <a href="lombok/package-summary.html">lombok</a> package.&nbsp;If you're trying to extend lombok or
+ write your own plugins, the other packages are what you're looking for.</body></html>
+ ]]></echo>
+ <javadoc sourcepath="src" defaultexcludes="yes" destdir="build/api" windowtitle="Lombok" Overview="${javadoc.overview.html}">
<classpath refid="lombok.deps.path" />
<classpath refid="lombok.libs.path" />
<link href="http://java.sun.com/javase/6/docs/api/" offline="true" packagelistLoc="./deps/javadoc/java6"/>