io.franzbecker.gradle-lombok
Owner: Franz Becker
A gradle plugin that simplifies the usage of the Lombok annotation processor.
https://github.com/franzbecker/gradle-lombok
Sources: https://github.com/franzbecker/gradle-lombok.git
Version 1.14
1.14
Created 04 May 2018.
A gradle plugin that simplifies the usage of the Lombok annotation processor.
Using the plugins DSL:
plugins {
id("io.franzbecker.gradle-lombok") version "1.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.franzbecker:gradle-lombok:1.14")
}
}
apply(plugin = "io.franzbecker.gradle-lombok")
Using the plugins DSL:
plugins {
id "io.franzbecker.gradle-lombok" version "1.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.franzbecker:gradle-lombok:1.14"
}
}
apply plugin: "io.franzbecker.gradle-lombok"