aboutsummaryrefslogtreecommitdiff
path: root/website/mavenrepo/index.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-09-02 01:27:58 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-09-02 01:27:58 +0200
commit10a4211346d76b5ae04161003ed0213a5d554b43 (patch)
treef8500e97a213c0c59a8129900e8a2dafe341ab91 /website/mavenrepo/index.html
parentc66654505fc53c31e7cb5d5dc5f4190e1d99d027 (diff)
downloadlombok-10a4211346d76b5ae04161003ed0213a5d554b43.tar.gz
lombok-10a4211346d76b5ae04161003ed0213a5d554b43.tar.bz2
lombok-10a4211346d76b5ae04161003ed0213a5d554b43.zip
Explained the correct pom magic incantation to force maven to use a v1.6 compiler.
Diffstat (limited to 'website/mavenrepo/index.html')
-rw-r--r--website/mavenrepo/index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html
index 1d791e31..ea7b8715 100644
--- a/website/mavenrepo/index.html
+++ b/website/mavenrepo/index.html
@@ -59,6 +59,19 @@
&lt;url&gt;http://projectlombok.org/mavenrepo&lt;/url&gt;
&lt;/repository&gt;
&lt;/repositories&gt;</div>
+ <div>
+ <em><strong>CAREFUL:</strong></em> lombok requires using the javac v1.6 compiler. If this is not your default compiler, you'll need to add the following to your
+ pom file to explicitly set the java compiler version to use:
+ <div class="snippet">&lt;plugin&gt;
+ &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+ &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
+ &lt;configuration&gt;
+ &lt;compilerVersion&gt;1.6&lt;/compilerVersion&gt;
+ &lt;source&gt;1.6&lt;/source&gt;
+ &lt;target&gt;1.6&lt;/target&gt;
+ &lt;/configuration&gt;
+&lt;/plugin&gt;</div>
+ </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>