Search Gradle plugins

Version 6.3.0-rc1

Created 10 November 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects