Search Gradle plugins

com.vaadin

Build Vaadin 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/guide/start/gradle

Sources: https://github.com/vaadin/vaadin-gradle-plugin

Version 0.14.5.1

0.14.5.1

Created 26 March 2021.

Build Vaadin 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") version "0.14.5.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.vaadin:vaadin-gradle-plugin:0.14.5.1")
      }
    }
    
    apply(plugin = "com.vaadin")
  • Applying plugins to all subprojects .