com.github.anbuck.compass
Owner: Andrew Buck
Runs Compass Sass
https://github.com/anbuck/gradle-compass
Sources: https://github.com/anbuck/gradle-compass
Version 2.0.7 (latest)
2.0.7
Created 01 December 2018.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Runs Compass Sass
Using the plugins DSL:
plugins {
id("com.github.anbuck.compass") version "2.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.anbuck:compass-gradle-plugin:2.0.7")
}
}
apply(plugin = "com.github.anbuck.compass")
Using the plugins DSL:
plugins {
id "com.github.anbuck.compass" version "2.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.anbuck:compass-gradle-plugin:2.0.7"
}
}
apply plugin: "com.github.anbuck.compass"