com.redmadrobot.kotlin-library
所有者: red_mad_robot 团队
Kotlin 项目的默认值
https://github.com/RedMadRobot/gradle-infrastructure
来源: https://github.com/RedMadRobot/gradle-infrastructure.git
使用 plugins DSL
plugins {
id("com.redmadrobot.kotlin-library") version "0.19.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.redmadrobot.build:infrastructure-kotlin:0.19.1")
}
}
apply(plugin = "com.redmadrobot.kotlin-library")
使用 plugins DSL
plugins {
id "com.redmadrobot.kotlin-library" version "0.19.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.redmadrobot.build:infrastructure-kotlin:0.19.1"
}
}
apply plugin: "com.redmadrobot.kotlin-library"