搜索Gradle插件

版本 1.1.3-a2(最新版)

1.1.3-a2

创建于2019年5月25日。

坚定的Kotlin代码格式化器

使用插件DSL

plugins {
  id("com.github.grihabor.blue") version "1.1.3-a2"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.grihabor.blue:gradle_plugin:1.1.3-a2")
  }
}

apply(plugin = "com.github.grihabor.blue")

使用插件DSL

plugins {
  id "com.github.grihabor.blue" version "1.1.3-a2"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.grihabor.blue:gradle_plugin:1.1.3-a2"
  }
}

apply plugin: "com.github.grihabor.blue"

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