com.labters.styler.stylerplugin
Owner: Ali YÜCE
This is the plugin which provides a task to merging json style files.
Sources: https://github.com/mayuce
Version 1.0.0 (latest)
1.0.0
Created 18 October 2020.
This is the plugin which provides a task to merging json style files.
Using the plugins DSL:
plugins {
id("com.labters.styler.stylerplugin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.labters.styler.stylerplugin:stylertask:1.0.0")
}
}
apply(plugin = "com.labters.styler.stylerplugin")
Using the plugins DSL:
plugins {
id "com.labters.styler.stylerplugin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.labters.styler.stylerplugin:stylertask:1.0.0"
}
}
apply plugin: "com.labters.styler.stylerplugin"