pub.ihub.plugin.ihub-kotlin
所有者: henry li
IHub Kotlin Gradle Plugin
https://github.com/ihub-pub/plugins
来源: https://github.com/ihub-pub/plugins.git
使用 plugins DSL
plugins {
id("pub.ihub.plugin.ihub-kotlin") version "1.6.6"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("pub.ihub.plugin:ihub-kotlin:1.6.6")
}
}
apply(plugin = "pub.ihub.plugin.ihub-kotlin")
使用 plugins DSL
plugins {
id "pub.ihub.plugin.ihub-kotlin" version "1.6.6"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "pub.ihub.plugin:ihub-kotlin:1.6.6"
}
}
apply plugin: "pub.ihub.plugin.ihub-kotlin"