diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-05-07 23:33:16 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-05-07 23:34:56 +0200 |
commit | 65d89f077e10820ebbfe48af99c38c60472a8eb9 (patch) | |
tree | 273510c5b297c3b8fb4dea676e77723c660ab7b3 /website/mavenrepo/index.html | |
parent | df7be9752afb22e8d9d8eef327c10c4d85555def (diff) | |
download | lombok-65d89f077e10820ebbfe48af99c38c60472a8eb9.tar.gz lombok-65d89f077e10820ebbfe48af99c38c60472a8eb9.tar.bz2 lombok-65d89f077e10820ebbfe48af99c38c60472a8eb9.zip |
Our maven/ivy instructions also apply to gradle; updated docs to reflect this.
Diffstat (limited to 'website/mavenrepo/index.html')
-rw-r--r-- | website/mavenrepo/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
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 @@ </style> </head><body> <div class="meat"> - <h1>Use Lombok via Maven or ivy</h1> + <h2>Maven</h1> <div> You can use lombok with maven by adding the following to your <strong>pom.xml</strong>: <div class="snippet"><dependencies> @@ -55,15 +55,19 @@ </dependency> </dependencies></div> </div> + <h2>Ivy</h2> <div> You can use lombok with ivy by adding the following to your <strong>ivy.xml</strong>: <div class="snippet"><dependency org="org.projectlombok" name="lombok" rev="@VERSION@" conf="build" /></div> </div> + <h2>Gradle</h2> <div> - <em><strong>CAREFUL:</strong></em> lombok requires using the javac v1.6 compiler or higher. + You can use lombok with gradle by adding the following to your <strong>build.gradle</strong> in the <strong>dependencies</strong> block: + <div class="snippet">provided "org.projectlombok:lombok:@VERSION@"</div> + </div> + <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. </div> - That's all there is to it!<br /> - <em>note:</em> You'll still need to download lombok, or doubleclick on the lombok.jar file downloaded by maven, to install lombok into your eclipse installation.<br /> <a id="downloadLink" href="http://projectlombok.googlecode.com/files/lombok.jar">Download lombok.jar</a> </div> <div class="backLink"> |