Search Gradle plugins

dev.sayaya.gwt.lombok

Automatically configures Lombok Java Agent for GWT compilation, enabling seamless use of Lombok annotations in GWT projects

https://github.com/sayaya1090/gwt

Sources: https://github.com/sayaya1090/gwt.git

Version 2.2.7 (latest)

Created 17 November 2025.

Automatically configures Lombok Java Agent for GWT compilation, enabling seamless use of Lombok annotations in GWT projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.sayaya.gwt.lombok") version "2.2.7"
}

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("dev.sayaya.gwt.lombok:dev.sayaya.gwt.lombok.gradle.plugin:2.2.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.sayaya.gwt.lombok")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.sayaya.gwt.lombok:dev.sayaya.gwt.lombok.gradle.plugin:2.2.7")
      }
    }
    
    apply(plugin = "dev.sayaya.gwt.lombok")
  • Applying plugins to all subprojects .