From 65d89f077e10820ebbfe48af99c38c60472a8eb9 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 7 May 2014 23:33:16 +0200 Subject: Our maven/ivy instructions also apply to gradle; updated docs to reflect this. --- website/mavenrepo/index.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'website/mavenrepo/index.html') diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html index 5f1e3ab6..01227bbd 100644 --- a/website/mavenrepo/index.html +++ b/website/mavenrepo/index.html @@ -43,7 +43,7 @@
-

Use Lombok via Maven or ivy

+

Maven

You can use lombok with maven by adding the following to your pom.xml:
<dependencies> @@ -55,15 +55,19 @@ </dependency> </dependencies>
+

Ivy

You can use lombok with ivy by adding the following to your ivy.xml:
<dependency org="org.projectlombok" name="lombok" rev="@VERSION@" conf="build" />
+

Gradle

- CAREFUL: lombok requires using the javac v1.6 compiler or higher. + You can use lombok with gradle by adding the following to your build.gradle in the dependencies block: +
provided "org.projectlombok:lombok:@VERSION@"
+
+
+ NOTE: You'll still need to download lombok, or doubleclick on the lombok.jar file downloaded by maven / ivy / gradle, to install lombok into your eclipse installation.
- That's all there is to it!
- note: You'll still need to download lombok, or doubleclick on the lombok.jar file downloaded by maven, to install lombok into your eclipse installation.
Download lombok.jar