Search Gradle plugins

com.vaadin.flow

Build Vaadin Flow applications with Gradle. Please follow the link below to learn which Plugin version to use with particular Vaadin version. Vaadin recommends using the latest Vaadin LTS version.

https://vaadin.com/docs/latest/flow/guide/start/gradle

Sources: https://github.com/vaadin/flow

Version 24.8.0.alpha11 (latest)

Created 08 May 2025.

Build Vaadin Flow applications with Gradle. Please follow the link below to learn which Plugin version to use with particular Vaadin version. Vaadin recommends using the latest Vaadin LTS version.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.vaadin.flow") version "24.8.0.alpha11"
}

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