搜索Gradle插件

org.hibernate.build.maven-repo-auth

所有者: Hibernate.org

将Maven settings.xml文件中定义的仓库安全设置应用到Gradle构建中的MavenRepository元素 - 上传和下载均适用

https://github.com/hibernate/gradle-maven-publish-auth

来源: https://github.com/sebersole/gradle-maven-publish-auth

版本 3.0.4 (最新)

3.0.4

创建于 2020年9月10日。

将Maven settings.xml文件中定义的仓库安全设置应用到Gradle构建中的MavenRepository元素 - 上传和下载均适用

使用 plugin DSL

plugins {
  id("org.hibernate.build.maven-repo-auth") version "3.0.4"
}

使用 传统的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.hibernate.build:gradle-maven-publish-auth:3.0.4")
  }
}

apply(plugin = "org.hibernate.build.maven-repo-auth")

使用 plugin DSL

plugins {
  id "org.hibernate.build.maven-repo-auth" version "3.0.4"
}

使用 传统的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.hibernate.build:gradle-maven-publish-auth:3.0.4"
  }
}

apply plugin: "org.hibernate.build.maven-repo-auth"

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