搜索 Gradle 插件

版本 0.18.0-rc.6 (最新)

0.18.0-rc.6

创建于 2023年7月6日。

Gradle 设置插件以注册 privateRepo 扩展。由其他设置插件使用。

使用plugins DSL

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

使用plugins DSL

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

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