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 2.2

Created 12 April 2019.

A gradle plugin that simplifies the usage of the Lombok annotation processor.

Using the plugins DSL:

plugins {
  id("io.franzbecker.gradle-lombok") version "2.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects