Owner:
Dorkbox LLC
Gradle Plugin to build Vaadin for use by the VaadinUndertow library
Version 14.9.4a
Created 07 June 2023.
Gradle Plugin to build Vaadin for use by the VaadinUndertow library
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dorkbox.GradleVaadin") version "14.9.4a"
}
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.dorkbox.GradleVaadin:com.dorkbox.GradleVaadin.gradle.plugin:14.9.4a") }It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.GradleVaadin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.GradleVaadin:com.dorkbox.GradleVaadin.gradle.plugin:14.9.4a") } } apply(plugin = "com.dorkbox.GradleVaadin") - Applying plugins to all subprojects .