com.vaadin
Owner: Vaadin Team
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 21.0.7
21.0.7
Created 22 November 2021.
Build Vaadin applications with Gradle. As of Vaadin 20+, the gradle plugin is released as part of the Vaadin Platform with the same version. For older versions, please follow the link below to learn which Plugin version to use with particular Vaadin version. Vaadin recommends using the latest Vaadin LTS version.
Using the plugins DSL:
plugins {
id("com.vaadin") version "21.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.vaadin:vaadin-gradle-plugin:21.0.7")
}
}
apply(plugin = "com.vaadin")
Using the plugins DSL:
plugins {
id "com.vaadin" version "21.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.vaadin:vaadin-gradle-plugin:21.0.7"
}
}
apply plugin: "com.vaadin"