com.offbeatmind.humane.gradle
所有者: Off-Beat Mind
本项目带来了理性和人性化的编码风格(格式化)辅助和强制工具,始于 Java,并且在其他语言的欢迎帮助下。
https://github.com/humanejava/humane
来源: https://github.com/humanejava/humane
版本 0.1.3-SNAPSHOT(最新版本)
0.1.3-SNAPSHOT
创建于 2019 年 3 月 18 日。
本项目带来了理性和人性化的编码风格(格式化)辅助和强制工具,始于 Java,并且在其他语言的欢迎帮助下。
使用 插件 DSL
plugins {
id("com.offbeatmind.humane.gradle") version "0.1.3-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.offbeatmind.humane:humane-plugins-gradle:0.1.3-SNAPSHOT")
}
}
apply(plugin = "com.offbeatmind.humane.gradle")
使用 插件 DSL
plugins {
id "com.offbeatmind.humane.gradle" version "0.1.3-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.offbeatmind.humane:humane-plugins-gradle:0.1.3-SNAPSHOT"
}
}
apply plugin: "com.offbeatmind.humane.gradle"