org.hildan.hashcode-submit
所有者: Joffrey BION
提供任务以帮助提交 Google Hashcode 的答案
https://github.com/joffrey-bion/hashcode-gradle-plugin
来源: https://github.com/joffrey-bion/hashcode-gradle-plugin
使用 plugins DSL
plugins {
id("org.hildan.hashcode-submit") version "1.1.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.hildan.hashcode:hashcode-submit-gradle-plugin:1.1.0")
}
}
apply(plugin = "org.hildan.hashcode-submit")
使用 plugins DSL
plugins {
id "org.hildan.hashcode-submit" version "1.1.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.hildan.hashcode:hashcode-submit-gradle-plugin:1.1.0"
}
}
apply plugin: "org.hildan.hashcode-submit"