diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-10-15 21:13:19 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-10-15 21:16:06 +0200 |
commit | c2f4ea47a16b38391928eaca32b23d3b1d4041fb (patch) | |
tree | d4dd0f416e632bbb1dd8d43b85dc8543ac6adfc5 /website/templates | |
parent | c896f242789913c907fa6dde8ee688548266d3a2 (diff) | |
download | lombok-c2f4ea47a16b38391928eaca32b23d3b1d4041fb.tar.gz lombok-c2f4ea47a16b38391928eaca32b23d3b1d4041fb.tar.bz2 lombok-c2f4ea47a16b38391928eaca32b23d3b1d4041fb.zip |
[website] Updated documentation on how to use Lombok and GWT together.
Diffstat (limited to 'website/templates')
-rw-r--r-- | website/templates/setup/gwt.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/setup/gwt.html b/website/templates/setup/gwt.html index ac6659a5..ce45fe7f 100644 --- a/website/templates/setup/gwt.html +++ b/website/templates/setup/gwt.html @@ -18,7 +18,7 @@ java <strong>-javaagent:lombok.jar=ECJ</strong> <em>(rest of arguments)</em> <p> To use the GWT plugin in eclipse together with Lombok:<br /> Install lombok into eclipse as normal (start <code>lombok.jar</code> as an application).<br /> - Download the JDT variant that GWT uses. This is the most recent org.eclipse.jdt.core_VERSION-CUSTOM-GWT jar found on the <a href="https://github.com/gwtproject/tools/tree/master/lib/eclipse">lib/eclipse section GWT's github page</a>. As of October 2018, that would be <a href="https://github.com/gwtproject/tools/raw/master/lib/eclipse/org.eclipse.jdt.core_3.13.50-CUSTOM-GWT-20171215.jar">org.eclipse.jdt.core_3.13.50-CUSTOM-GWT-20171215.jar</a>.<br /> + Download the JDT variant that GWT uses. For GWT v2.8.2 you'll need <a href="https://github.com/gwtproject/tools/raw/master/lib/eclipse/org.eclipse.jdt.core_3.11.2-CUSTOM-GWT-2.8-20160205.jar">org.eclipse.jdt.core 3.11.2</a>; for the current GWT development snapshot, this is <a href="https://github.com/gwtproject/tools/raw/master/lib/eclipse/org.eclipse.jdt.core_3.13.50-CUSTOM-GWT-20171215.jar">org.eclipse.jdt.core 3.13.50</a>. For more versions, search for jar files matching 'org.eclipse.jdt.core-{VERSION}-CUSTOM-GWT-{date}.jar in the <a href="https://github.com/gwtproject/tools/tree/master/lib/eclipse">lib/eclipse section GWT's github page</a>.<br /> Configure the 'GWT/Compile' option in the eclipse GWT plugin; in the advanced section, add the following VM arguments:<br /> <pre>-javaagent:/path/to/lombok.jar=ECJ -Xbootclasspath/p:/path/to/lombok.jar:/path/to/org.eclipse.jdt.core_fromPreviousStep.jar</pre> |