Search Gradle plugins

dev.sayaya.gwt

Extends org.docstr.gwt plugin with automatic Lombok support, built-in web server management for tests, and HTML host file generation for GWT development

https://github.com/sayaya1090/gwt

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

Version 2.2.7 (latest)

Created 17 November 2025.

Extends org.docstr.gwt plugin with automatic Lombok support, built-in web server management for tests, and HTML host file generation for GWT development

Add this plugin to your build using the plugins DSL:

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