com.github.salomonbrys.gradle.sass
Owner: Salomon BRYS
A Gradle plugin to download & run the official dart-sass release with Gradle
https://github.com/SalomonBrys/gradle-sass
Sources: https://github.com/SalomonBrys/gradle-sass.git
Version 1.2.0 (latest)
1.2.0
Created 05 March 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.2.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.2.0")
}
}
apply(plugin = "com.github.salomonbrys.gradle.sass")
Using the plugins DSL:
plugins {
id "com.github.salomonbrys.gradle.sass" version "1.2.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.2.0"
}
}
apply plugin: "com.github.salomonbrys.gradle.sass"