com.jamesward.kotlin-universe-catalog
所有者: James Ward
Gradle约定插件,为Kotlin Gradle插件和库的全宇宙定义版本目录
https://github.com/jamesward/kotlin-universe-catalog
源代码: https://github.com/jamesward/kotlin-universe-catalog
使用插件DSL
plugins {
id("com.jamesward.kotlin-universe-catalog") version "2024.07.16-2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.jamesward.kotlin-universe-catalog:gradle-plugin:2024.07.16-2")
}
}
apply(plugin = "com.jamesward.kotlin-universe-catalog")
使用插件DSL
plugins {
id "com.jamesward.kotlin-universe-catalog" version "2024.07.16-2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.jamesward.kotlin-universe-catalog:gradle-plugin:2024.07.16-2"
}
}
apply plugin: "com.jamesward.kotlin-universe-catalog"