io.freefair.jsass-java
Owner: Lars Grefer
Compiles SASS and SCSS in your java resources (src/*/resources)
https://docs.freefair.io/gradle-plugins/6.5.0.2/reference/
Sources: https://github.com/freefair/jsass-gradle-plugin
Version 6.5.0.2 (latest)
Created 20 June 2022.
Compiles SASS and SCSS in your java resources (src/*/resources)
Add this plugin to your build using the plugins DSL:
plugins {
id("io.freefair.jsass-java") version "6.5.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.freefair.jsass-java:io.freefair.jsass-java.gradle.plugin:6.5.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.freefair.jsass-java") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.freefair.jsass-java:io.freefair.jsass-java.gradle.plugin:6.5.0.2") } } apply(plugin = "io.freefair.jsass-java")
- Applying plugins to all subprojects .