From 6e9205a5706f1caba39402a62318693ebff2426a Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 30 May 2011 23:50:32 +0200 Subject: Updated the download page for the website, which now includes a list with instructions for many platforms. --- website/download.html | 51 ++++++++++++++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 19 deletions(-) (limited to 'website/download.html') diff --git a/website/download.html b/website/download.html index 84ae9b15..6369d085 100644 --- a/website/download.html +++ b/website/download.html @@ -30,31 +30,44 @@ Report an issue
+ + + Download! +
Version: @VERSION@ | changelog
-

Maven or Ivy

- Lombok is in maven central with groupId org.projectlombok, artifactId lombok and version @VERSION@.
- Full instructions are on the lombok maven info page. -

Javac, netbeans, and most other compilers and tools based on javac

- Just put lombok.jar on the classpath. -

Eclipse and STS (Springsource Tool Suite)

- Run lombok.jar as a stand-alone java app (i.e. doubleclick it, usually) to open the installer, which will find your eclipse/STS installs automatically. -

IDEA IntelliJ

- lombok doesn't (yet) work under IntelliJ. We're working on it though! -

Javadoc

- First delombok your code then run javadoc on the result. See the delombok feature page for more information. -

GWT

- When you create a new GWT project, 2 batch scripts are made by the tool (one to run in devmode, one to compile). Open these scripts in an editor and find the - invocation of 'java'. Add the following: -javaagent:lombok.jar=ECJ. Then copy lombok.jar to your GWT project directory, and add lombok.jar - to the classpath as usual. Thanks to Stephan Habermann for figuring this out. -

Play! Framework

- Play does not run annotation processors of any kind, but Aaron Freeman has made a play plugin to get around this problem. See the play-lombok plugin for more information. -

ecj and other tools based on ecj

- Put lombok.jar on the classpath and add the following VM parameter when invoking ecj: -javaagent:lombok.jar=ECJ. + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Maven or IvyLombok is in maven central. More…
Javac and netbeansJust put lombok.jar on the classpath. Note that val does not work in Netbeans (yet).
Eclipse and STSRun lombok.jar as a java app (i.e. doubleclick it, usually) to open the installer.
IDEA IntelliJlombok doesn't (yet) work under IntelliJ. We're working on it though!
JavadocFirst delombok your code then run javadoc on the result. More…
GWTLombok works with GWT. More…
Play! FrameworkUse Aaron Freeman's lombok play plugin.
ecjLombok works on ecj and ecj-based tools. More…
-- cgit