com.dorkbox.GradleVaadin
Owner: Dorkbox LLC
Gradle Plugin to build Vaadin for use by the VaadinUndertow library
https://git.dorkbox.com/dorkbox/GradleVaadin
Sources: https://git.dorkbox.com/dorkbox/GradleVaadin
Version 14.10.1 (latest)
14.10.1
Created 13 June 2023.
Gradle Plugin to build Vaadin for use by the VaadinUndertow library
Using the plugins DSL:
plugins {
id("com.dorkbox.GradleVaadin") version "14.10.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorkbox:GradleVaadin:14.10.1")
}
}
apply(plugin = "com.dorkbox.GradleVaadin")
Using the plugins DSL:
plugins {
id "com.dorkbox.GradleVaadin" version "14.10.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorkbox:GradleVaadin:14.10.1"
}
}
apply plugin: "com.dorkbox.GradleVaadin"