Search Gradle plugins

Version 0.0.18 (latest)

0.0.18

Created 17 January 2020.

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.18"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.cool.william.frontend:gradle-setup-frontend-plugin:0.0.18")
      }
    }
    
    apply(plugin = "cool.william.frontend")
  • Applying plugins to all subprojects .