Search Gradle plugins

io.franzbecker.gradle-lombok

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.12

Created 18 March 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.12"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.franzbecker:gradle-lombok:1.12")
  }
}

apply(plugin = "io.franzbecker.gradle-lombok")

Using the plugins DSL:

plugins {
  id "io.franzbecker.gradle-lombok" version "1.12"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.franzbecker:gradle-lombok:1.12"
  }
}

apply plugin: "io.franzbecker.gradle-lombok"

Learn how to apply plugins to subprojects