io.github.bjoernmayer.artifactregistryGradlePlugin
所有者: Björn Mayer
自动处理Artifact Registry上托管的Maven仓库的认证。
https://github.com/bjoernmayer/artifactregistry-gradle
源代码: https://github.com/bjoernmayer/artifactregistry-gradle
使用plugins DSL
plugins {
id("io.github.bjoernmayer.artifactregistryGradlePlugin") version "0.4.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.bjoernmayer:artifactregistry-gradle-plugin:0.4.0")
}
}
apply(plugin = "io.github.bjoernmayer.artifactregistryGradlePlugin")
使用plugins DSL
plugins {
id "io.github.bjoernmayer.artifactregistryGradlePlugin" version "0.4.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.bjoernmayer:artifactregistry-gradle-plugin:0.4.0"
}
}
apply plugin: "io.github.bjoernmayer.artifactregistryGradlePlugin"