jmfayard.github.io.gradle-kotlin-dsl-libs
所有者: Jean-Michel Fayard
使用gradle kotlin-dsl轻松管理依赖项
https://github.com/jmfayard/gradle-kotlin-dsl-libs
来源: https://github.com/jmfayard/gradle-kotlin-dsl-libs
使用插件DSL
plugins {
id("jmfayard.github.io.gradle-kotlin-dsl-libs") version "0.2.6"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("jmfayard.github.io:gradle-kotlin-dsl-libs:0.2.6")
}
}
apply(plugin = "jmfayard.github.io.gradle-kotlin-dsl-libs")
使用插件DSL
plugins {
id "jmfayard.github.io.gradle-kotlin-dsl-libs" version "0.2.6"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "jmfayard.github.io:gradle-kotlin-dsl-libs:0.2.6"
}
}
apply plugin: "jmfayard.github.io.gradle-kotlin-dsl-libs"