From 9488c1c248569d91fa74ed9358baba7f175f02fa Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Jun 2017 22:29:24 +0200 Subject: Removed old website; we no longer use it. --- website-old/mavenrepo/index.html | 99 ---------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 website-old/mavenrepo/index.html (limited to 'website-old/mavenrepo') diff --git a/website-old/mavenrepo/index.html b/website-old/mavenrepo/index.html deleted file mode 100644 index a51a5a20..00000000 --- a/website-old/mavenrepo/index.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - Project Lombok - - -
-

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> - <scope>provided</scope> - </dependency> -</dependencies>
-
-

Ivy

-
- You can use lombok with ivy by adding the following to your ivy.xml: -
<dependency org="org.projectlombok" name="lombok" rev="@VERSION@" conf="build" />
-
-

SBT

-
- You can use lombok with SBT by adding the following to your build.sbt: -
libraryDependencies += "org.projectlombok" % "lombok" % "@VERSION@"
-
-

Gradle

- -
- If your gradle version is >= 2.12 you can use lombok by adding the following to your build.gradle in the dependencies block: -
compileOnly "org.projectlombok:lombok:@VERSION@"
-
-
- If you use an older version you can still use the following: -
provided "org.projectlombok:lombok:@VERSION@"
- as long as your gradle build include a war task (otherwise the "provided" scope is not available and you have to create your own configuration as explained here ) -
-
-
- NOTE: 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. -
- Download lombok.jar -
- - - - - -- cgit