Search Gradle plugins

Version 2.0.2 (latest)

2.0.2

Created 16 May 2020.

scss -> css | css -> min.css | js -> min.js

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.matsuyoido.frontend") version "2.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.matsuyoido:frontend-plugin:2.0.2")
      }
    }
    
    apply(plugin = "com.matsuyoido.frontend")
  • Applying plugins to all subprojects .