cool.william.frontend
                  Owner:
                  
                    
                    William Lindner
                  
                
Setup a minimal React frontend and hook into Spring Boot tasks.
https://github.com/wlindner/gradle-setup-frontend-plugin
Sources: https://github.com/wlindner/spring-boot-zero-conf-react
Version 0.0.9
Created 25 November 2019.
                Setup a minimal React frontend for your Spring Boot app.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("cool.william.frontend") version "0.0.9"
}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("cool.william.frontend:cool.william.frontend.gradle.plugin:0.0.9") }It can then be applied in the precompiled script plugin:plugins { id("cool.william.frontend") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cool.william.frontend:cool.william.frontend.gradle.plugin:0.0.9") } } apply(plugin = "cool.william.frontend")
- Applying plugins to all subprojects .