搜索 Gradle 插件

ws.gross.private-repo-publish

Gradle 插件,用于配置 `maven-publish` 插件,与使用私人 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 插件,用于配置 `maven-publish` 插件,与使用私人 Nexus/Artifactory 认证仓库的合理默认仓库

使用 插件 DSL

plugins {
  id("ws.gross.private-repo-publish") 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-publish")

使用 插件 DSL

plugins {
  id "ws.gross.private-repo-publish" 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-publish"

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