搜索Gradle插件

ws.gross.private-repo.bootstrap

所有者: Konstantin Gribov

Gradle设置插件以为此构建应用启动清单。解析并解析清单,将插件声明添加到pluginManagement并版本目录添加到dependencyResolutionManagement。

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

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

版本 0.18.0-rc.6 (最新)

0.18.0-rc.6

创建日期 2023年7月6日。

Gradle设置插件以为此构建应用启动清单。解析并解析清单,将插件声明添加到pluginManagement并版本目录添加到dependencyResolutionManagement。

使用 plugins DSL

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

使用 plugins DSL

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

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