From 5898d3c96a7f8573dc227e84c7c2aca5c49e4cd5 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 29 Jul 2009 14:13:23 +0200 Subject: Removed mention of github hosting the website. It doesn't. We're hosting it ourselves. --- website/mavenrepo/index.html | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 website/mavenrepo/index.html (limited to 'website/mavenrepo/index.html') diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html new file mode 100644 index 00000000..70cd2778 --- /dev/null +++ b/website/mavenrepo/index.html @@ -0,0 +1,74 @@ + + + + + + + Project Lombok + + +
+

Use Lombok via Maven

+
+ You can use lombok with maven by adding the following to your pom.xml: +
<dependencies> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>@VERSION@</version> + </dependency> +</dependencies>
+ For now you also need to add the following repository, though we've put in a request at apache to add lombok to + the central maven repository, so you may want to try it without this extra block first and see if it works. If not, also add: +
<repositories> + <repository> + <id>projectlombok.org</id> + <url>http://projectlombok.org/mavenrepo</url> + </repository> +</repositories>
+ That's all there is to it! +
+ +
+ + + -- cgit