diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-03 23:11:04 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-03 23:11:04 +0200 |
commit | 02f8fbc13b7deff36e041d50d1de365d20bd192b (patch) | |
tree | 34307edc1c3c0f305ce1358b8db78b7d3a362cb0 /build.xml | |
parent | 9f691c56be7dbfb8aab69a6dbe16d81d44f47654 (diff) | |
download | lombok-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.xml | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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. 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>. Otherwise, + check the <a href="lombok/package-summary.html">lombok</a> package. 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"/> |