From ec6c61d82ac9ac4d8421fdc31176d373d8042e92 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 19 Jun 2017 23:55:24 +0200 Subject: Added pages for build tools, and updated the android instructions. --- website/templates/setup/maven.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 website/templates/setup/maven.html (limited to 'website/templates/setup/maven.html') diff --git a/website/templates/setup/maven.html b/website/templates/setup/maven.html new file mode 100644 index 00000000..5ca09126 --- /dev/null +++ b/website/templates/setup/maven.html @@ -0,0 +1,32 @@ +<#import "_setup.html" as s> + +<@s.scaffold title="Maven"> + <@s.introduction> +

+ To set up lombok with any build tool, you have to specify that the lombok dependency is required to compile your source code, but does not need to be present when running/testing/jarring/otherwise deploying your code. Generally this is called a 'provided' dependency. This page explains how to integrate lombok with the Apache Maven build tool. +

+ Lombok is available in maven central, so telling Maven to download lombok is easy. +

+ + + <@s.section title="Adding lombok to your pom file"> +

+ To include lombok as a 'provided' dependency, add it to your <dependencies> block like so:

+<dependencies>
+	<dependency>
+		<groupId>org.projectlombok</groupId>
+		<artifactId>lombok</artifactId>
+		<version>${version}</version>
+		<scope>provided</scope>
+	</dependency>
+</dependencies>
+
+

+ + + <@s.section title="Delomboking: The Lombok Maven Plugin"> +

+ There is a plugin for Maven that we recommend you use if you want to delombok via maven. Useful if you want to run source analysis tools on your source after lombok has been applied, or if you want to generate javadoc. The plugin is open source. Read more about the lombok maven plugin. +

+ + -- cgit