搜索Gradle插件

版本 0.4.0(最新版本)

0.4.0

创建日期:2024年6月19日。

自动处理Artifact Registry上托管的Maven仓库的认证。

使用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"

学习如何将插件应用到子项目中