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.8.0

Created 02 July 2020.

Build Vaadin 14 applications with Gradle

Using the plugins DSL:

plugins {
  id("com.vaadin") version "0.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vaadin:vaadin-gradle-plugin:0.8.0")
  }
}

apply(plugin = "com.vaadin")

Using the plugins DSL:

plugins {
  id "com.vaadin" version "0.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vaadin:vaadin-gradle-plugin:0.8.0"
  }
}

apply plugin: "com.vaadin"

Learn how to apply plugins to subprojects