Search Gradle plugins

info.robotbrain.lombok

Gradle plugin for lombok (and delombok) support

https://github.com/robotbrain/lombok-gradle

Version 1.1 (latest)

Created 19 November 2014.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.robotbrain.lombok") version "1.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("info.robotbrain.lombok:info.robotbrain.lombok.gradle.plugin:1.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("info.robotbrain.lombok")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("info.robotbrain.lombok:info.robotbrain.lombok.gradle.plugin:1.1")
      }
    }
    
    apply(plugin = "info.robotbrain.lombok")
  • Applying plugins to all subprojects .