Search Gradle plugins

Version 2.0.0.beta2 (latest)

2.0.0.beta2

Created 12 October 2019.

Build Vaadin applications with Gradle!

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.devsoap.plugin.vaadin") version "2.0.0.beta2"
}

See also:

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