Search Gradle plugins

Version 6.5.0.3

Created 14 July 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects