diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 18:36:31 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 18:36:31 +0200 |
commit | 63a4938a7da6d49ed4ef182369faffb9e43e5368 (patch) | |
tree | 09c839e50adb6ec293ef26f345f1d4de4400bd9a /build.xml | |
parent | 84d017e27047042c2299110fe08302840c45320d (diff) | |
download | lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.tar.gz lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.tar.bz2 lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.zip |
Added documentation for the @Data annotation. Also fixed whitespace issues in the snippet views, and removed a debug print in one of the snippets.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -20,6 +20,7 @@ THE SOFTWARE. --> <project name="lombok" default="dist"> + <property name="SNIPPET_TAB_STOP" value="2" /> <property name="build.compiler" value="javac1.6" /> <path id="lombok.deps.path"> <fileset dir="deps/lombok"> @@ -62,11 +63,9 @@ <antcall target="-integrateSnippet"> <param name="transformationName" value="GetterSetter" /> </antcall> -<!-- <antcall target="-integrateSnippet"> <param name="transformationName" value="Data" /> </antcall> ---> </target> <target name="-integrateSnippet"> @@ -82,14 +81,14 @@ <arg value="${prefile}" /> <arg value="-targetfile" /> <arg value="${preout}" /> - <arg line="-style Eclipse -converter html -tabs 4" /> + <arg line="-style Eclipse -converter html -tabs ${SNIPPET_TAB_STOP}" /> </java> <java jar="deps/build/java2html.jar" fork="true"> <arg value="-srcfile" /> <arg value="${postfile}" /> <arg value="-targetfile" /> <arg value="${postout}" /> - <arg line="-style Eclipse -converter html -tabs 4" /> + <arg line="-style Eclipse -converter html -tabs ${SNIPPET_TAB_STOP}" /> </java> <loadfile property="pre" encoding="UTF-8" srcFile="${preout}"> <filterchain> |