diff options
Diffstat (limited to 'website/mavenrepo')
-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"> |