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.7.5
Created 20 January 2022.
                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.7.5"
}
              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.7.5") }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.7.5") } } apply(plugin = "com.dorkbox.GradleVaadin") - Applying plugins to all subprojects .