aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-07-17 18:36:31 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-07-17 18:36:31 +0200
commit63a4938a7da6d49ed4ef182369faffb9e43e5368 (patch)
tree09c839e50adb6ec293ef26f345f1d4de4400bd9a /build.xml
parent84d017e27047042c2299110fe08302840c45320d (diff)
downloadlombok-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.xml7
1 files changed, 3 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index b8f19c6b..3e07f363 100644
--- a/build.xml
+++ b/build.xml
@@ -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>