搜索 Gradle 插件

com.labters.styler

所有者: Ali YÜCE

这是提供合并 json 样式文件的任务的插件!

http://www.labters.com/

来源: https://github.com/mayuce

版本 0.0.1 (最新)

0.0.1

创建于 2020年10月10日。

这是提供合并 json 样式文件的任务的插件!

使用 插件 DSL

plugins {
  id("com.labters.styler") version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.labters:stylertask:0.0.1")
  }
}

apply(plugin = "com.labters.styler")

使用 插件 DSL

plugins {
  id "com.labters.styler" version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.labters:stylertask:0.0.1"
  }
}

apply plugin: "com.labters.styler"

了解如何将插件应用到子项目中