Search Gradle plugins

Version 1.0.1

Created 06 December 2018.

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.0.1"
}

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.0.1")
  }
}

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

Using the plugins DSL:

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

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.0.1"
  }
}

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

Learn how to apply plugins to subprojects