com.github.voplex95.lesscompiler
Owner: Illia Chtchoma
Lightweight LESS to CSS compiler plugin
https://github.com/voplex95/gradle-lesscompiler-plugin
Sources: https://github.com/voplex95/gradle-lesscompiler-plugin
Version 1.0.3 (latest)
1.0.3
Created 28 March 2017.
Lightweight LESS to CSS compiler plugin
Using the plugins DSL:
plugins {
id("com.github.voplex95.lesscompiler") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.voplex95:gradle-lesscompiler-plugin:1.0.3")
}
}
apply(plugin = "com.github.voplex95.lesscompiler")
Using the plugins DSL:
plugins {
id "com.github.voplex95.lesscompiler" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.voplex95:gradle-lesscompiler-plugin:1.0.3"
}
}
apply plugin: "com.github.voplex95.lesscompiler"