com.varabyte.kobweb.application
                  Owner:
                  
                    
                    David Herman
                  
                
Generates boilerplate for a Kobweb application.
Sources: https://github.com/varabyte/kobweb.git
Version 0.23.3 (latest)
Created 11 September 2025.
                Generates boilerplate for a Kobweb application.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.varabyte.kobweb.application") version "0.23.3"
}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.varabyte.kobweb.application:com.varabyte.kobweb.application.gradle.plugin:0.23.3") }It can then be applied in the precompiled script plugin:plugins { id("com.varabyte.kobweb.application") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.varabyte.kobweb.application:com.varabyte.kobweb.application.gradle.plugin:0.23.3") } } apply(plugin = "com.varabyte.kobweb.application")
- Applying plugins to all subprojects .