com.xenoterracide.gradle.bundle.kotlin-lib-defaults
所有者: Caleb Cushing
Kotlin库的Xeno默认配置
https://bitbucket.org/xenoterracide/gradle-plugin-bundle
源代码: [email protected]:xenoterracide/gradle-plugin-bundle.git
使用 插件DSL
plugins {
id("com.xenoterracide.gradle.bundle.kotlin-lib-defaults") version "0.7.11"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.xenoterracide.gradle:gradle-plugin-bundle:0.7.11")
}
}
apply(plugin = "com.xenoterracide.gradle.bundle.kotlin-lib-defaults")
使用 插件DSL
plugins {
id "com.xenoterracide.gradle.bundle.kotlin-lib-defaults" version "0.7.11"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.xenoterracide.gradle:gradle-plugin-bundle:0.7.11"
}
}
apply plugin: "com.xenoterracide.gradle.bundle.kotlin-lib-defaults"