Search Gradle plugins

Version 1.1.0

Created 22 January 2019.

A Gradle plugin to download & run the official dart-sass release with Gradle

Using the plugins DSL:

plugins {
  id("com.github.salomonbrys.gradle.sass") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.salomonbrys.gradle.sass:Gradle-Sass:1.1.0")
  }
}

apply(plugin = "com.github.salomonbrys.gradle.sass")

Using the plugins DSL:

plugins {
  id "com.github.salomonbrys.gradle.sass" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.salomonbrys.gradle.sass:Gradle-Sass:1.1.0"
  }
}

apply plugin: "com.github.salomonbrys.gradle.sass"

Learn how to apply plugins to subprojects