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.6.0-SNAPSHOT

Created 12 May 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.6.0-SNAPSHOT"
}

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