搜索Gradle插件

ws.gross.private-repo

配置设置插件以使用具有身份验证和便利默认设置的私有Nexus/Artifactory仓库进行依赖关系解析管理和插件管理。

https://github.com/grossws/private-repo

源代码: https://github.com/grossws/gradle-private-repo-plugin.git

版本 0.18.0-rc.6(最新版本)

0.18.0-rc.6

创建于 2023年7月6日。

Gradle 设置插件,用于配置 dependencyResolutionManagement 和 pluginManagement 以使用带有身份验证和便利默认设置的私有 Nexus/Artifactory 仓库。

使用 插件 DSL

plugins {
  id("ws.gross.private-repo") version "0.18.0-rc.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("ws.gross.gradle:private-repo:0.18.0-rc.6")
  }
}

apply(plugin = "ws.gross.private-repo")

使用 插件 DSL

plugins {
  id "ws.gross.private-repo" version "0.18.0-rc.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "ws.gross.gradle:private-repo:0.18.0-rc.6"
  }
}

apply plugin: "ws.gross.private-repo"

了解如何应用插件到子项目中