Search Gradle plugins

Version 8.11 (latest)

8.11

Created 16 November 2024.

Compiles SASS and SCSS in your java resources (src/*/resources)

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.freefair.sass-java") version "8.11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.freefair.gradle:embedded-sass-plugin:8.11")
      }
    }
    
    apply(plugin = "io.freefair.sass-java")
  • Applying plugins to all subprojects .