com.github.voplex95.lesscompiler
所有者: Illia Chtchoma
轻量级 LESS 到 CSS 编译器插件
https://github.com/voplex95/gradle-lesscompiler-plugin
源代码: https://github.com/voplex95/gradle-lesscompiler-plugin
使用 插件 DSL
plugins {
id("com.github.voplex95.lesscompiler") version "1.0.3"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.voplex95:gradle-lesscompiler-plugin:1.0.3")
}
}
apply(plugin = "com.github.voplex95.lesscompiler")
使用 插件 DSL
plugins {
id "com.github.voplex95.lesscompiler" version "1.0.3"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.voplex95:gradle-lesscompiler-plugin:1.0.3"
}
}
apply plugin: "com.github.voplex95.lesscompiler"