diff options
| author | Roel Spilker <r.spilker@gmail.com> | 2011-05-03 02:26:15 +0200 |
|---|---|---|
| committer | Roel Spilker <r.spilker@gmail.com> | 2011-05-03 02:26:15 +0200 |
| commit | b93a58298556aedaeef9e3d5fa4e53bc9b0ebe59 (patch) | |
| tree | 5b9aa50af1f0b8648d8083bfe9f95e4f0ac4b618 /website/mavenrepo/index.html | |
| parent | e5e35213780a87c813b892d5efc1288125980baf (diff) | |
| parent | 12e4f36a2f5aae5b17266fb15376c82d74b7bf95 (diff) | |
| download | lombok-b93a58298556aedaeef9e3d5fa4e53bc9b0ebe59.tar.gz lombok-b93a58298556aedaeef9e3d5fa4e53bc9b0ebe59.tar.bz2 lombok-b93a58298556aedaeef9e3d5fa4e53bc9b0ebe59.zip | |
Merge branch 'master' of git@github.com:rzwitserloot/lombok
Diffstat (limited to 'website/mavenrepo/index.html')
| -rw-r--r-- | website/mavenrepo/index.html | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html index 6b8ea48d..aa7f4935 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</h1> + <h1>Use Lombok via Maven or ivy</h1> <div> You can use lombok with maven by adding the following to your <strong>pom.xml</strong>: <div class="snippet"><dependencies> @@ -53,25 +53,14 @@ <version>@VERSION@</version> <scope>provided</scope> </dependency> -</dependencies> -<repositories> - <repository> - <id>projectlombok.org</id> - <url>http://projectlombok.org/mavenrepo</url> - </repository> -</repositories></div> +</dependencies></div> + </div> + <div> + You can use lombok with ivy by adding the following to your <strong>ivy.xml</strong>: + <div class="snippet"><dependency org="projectlombok.org" name="lombok" rev="@VERSION@" conf="build" /></div> + </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"><plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <compilerVersion>1.6</compilerVersion> - <source>1.6</source> - <target>1.6</target> - </configuration> -</plugin></div> + <em><strong>CAREFUL:</strong></em> lombok requires using the javac v1.6 compiler or higher. </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 /> |
