Search Gradle plugins

Version 1.0.0

Created 14 November 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.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.0.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.github.salomonbrys.gradle.sass" version "1.0.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.0.0"
  }
}

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

Learn how to apply plugins to subprojects