ws.gross.private-repo.base
所有者: Konstantin Gribov
Gradle 设置插件以注册 privateRepo 扩展。由其他设置插件使用。
https://github.com/grossws/private-repo
来源: https://github.com/grossws/private-repo.git
使用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"