com.github.ksoichiro.web.resource
Owner: Soichiro Kashima
Gradle plugin to use CoffeeScript, LESS and Bower libraries.
https://github.com/ksoichiro/gradle-web-resource-plugin
Sources: https://github.com/ksoichiro/gradle-web-resource-plugin.git
Version 1.7.3 (latest)
Created 04 February 2017.
Gradle plugin to use CoffeeScript, LESS and Bower libraries without Node.js/npm.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.ksoichiro.web.resource") version "1.7.3"
}
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("com.github.ksoichiro.web.resource:com.github.ksoichiro.web.resource.gradle.plugin:1.7.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.ksoichiro.web.resource") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.ksoichiro.web.resource:com.github.ksoichiro.web.resource.gradle.plugin:1.7.3") } } apply(plugin = "com.github.ksoichiro.web.resource")
- Applying plugins to all subprojects .