aboutsummaryrefslogtreecommitdiff
path: root/website/mavenrepo
diff options
context:
space:
mode:
authorArnaud Ruffin <arnaud.ruffin@orange.com>2016-05-04 16:33:10 +0200
committerArnaud Ruffin <arnaud.ruffin@orange.com>2016-05-04 16:33:10 +0200
commitbb0a4475a199c7170f70b8533d6ab18c6eaaf789 (patch)
tree82645120c45dd99def3878566b26f2710e2ca15b /website/mavenrepo
parent26ad9e7f5f4de77436d3d63e4a43e8cb77621c15 (diff)
downloadlombok-bb0a4475a199c7170f70b8533d6ab18c6eaaf789.tar.gz
lombok-bb0a4475a199c7170f70b8533d6ab18c6eaaf789.tar.bz2
lombok-bb0a4475a199c7170f70b8533d6ab18c6eaaf789.zip
update gradle configuration documentation
Diffstat (limited to 'website/mavenrepo')
-rw-r--r--website/mavenrepo/index.html11
1 files changed, 9 insertions, 2 deletions
diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html
index b97eb829..a51a5a20 100644
--- a/website/mavenrepo/index.html
+++ b/website/mavenrepo/index.html
@@ -66,12 +66,19 @@
<div class="snippet">libraryDependencies += "org.projectlombok" % "lombok" % "@VERSION@"</div>
</div>
<h2>Gradle</h2>
+
+ <div>
+ If your gradle version is <strong> >= 2.12</strong> you can use lombok by adding the following to your <strong>build.gradle</strong> in the <strong>dependencies</strong> block:
+ <div class="snippet">compileOnly "org.projectlombok:lombok:@VERSION@"</div>
+ </div>
<div>
- You can use lombok with gradle by adding the following to your <strong>build.gradle</strong> in the <strong>dependencies</strong> block:
+ If you use an older version you can still use the following:
<div class="snippet">provided "org.projectlombok:lombok:@VERSION@"</div>
+ as long as your gradle build include a war task (otherwise the "provided" scope is not available and you have to create your own configuration as <a href="https://issues.gradle.org/browse/GRADLE-784">explained here</a> )
</div>
+ <br>
<div>
- <em>NOTE:</em> 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.
+ <strong><em>NOTE:</em></strong> 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.
</div>
<a id="downloadLink" href="https://projectlombok.org/downloads/lombok.jar">Download lombok.jar</a>
</div>