diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-02-06 05:42:41 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-02-06 06:20:44 +0100 |
commit | 116a9dbb75200223664e26093b0e238b57d4255e (patch) | |
tree | 54ba1ed87db289c0522d7aa1bd185ab2923af8fa /buildScripts | |
parent | e9d86650ffae683d86e59cff96c74a7c9931b6d0 (diff) | |
download | lombok-116a9dbb75200223664e26093b0e238b57d4255e.tar.gz lombok-116a9dbb75200223664e26093b0e238b57d4255e.tar.bz2 lombok-116a9dbb75200223664e26093b0e238b57d4255e.zip |
[compiling] running the ant compile job now no longer emits any warnings. Each warning that was emitted has been addressed, or analysed and suppressed.
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/website.ant.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml index 36b3a193..15a0f95f 100644 --- a/buildScripts/website.ant.xml +++ b/buildScripts/website.ant.xml @@ -80,6 +80,8 @@ such as applying the templates to produce the website, converting the changelog <target name="-compile-webclasses"> <mkdir dir="build/webclasses" /> <javac includeDestClasses="false" includeantruntime="false" destdir="build/webclasses" debug="on" source="1.8" target="1.8"> + <compilerarg value="-proc:none" /> + <compilerarg value="-Xlint:-options" /> <classpath refid="build.path" /> <src path="src/website" /> </javac> |