Search Gradle plugins

Version 8.0.0-rc1

Created 11 March 2023.

Compiles SASS and SCSS in your webapp resources (src/main/webapp)

Using the plugins DSL:

plugins {
  id("io.freefair.sass-war") version "8.0.0-rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.freefair.gradle:embedded-sass-plugin:8.0.0-rc1")
  }
}

apply(plugin = "io.freefair.sass-war")

Using the plugins DSL:

plugins {
  id "io.freefair.sass-war" version "8.0.0-rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.freefair.gradle:embedded-sass-plugin:8.0.0-rc1"
  }
}

apply plugin: "io.freefair.sass-war"

Learn how to apply plugins to subprojects