ws.gross.private-repo.base
Owner: Konstantin Gribov
Gradle Settings plugin to register privateRepo extension. Used by other settings plugins.
https://github.com/grossws/private-repo
Sources: https://github.com/grossws/private-repo.git
Version 0.15.0
0.15.0
Created 29 March 2022.
Gradle Settings plugin to register privateRepo extension.
Used by other settings plugins.
Using the plugins DSL:
plugins {
id("ws.gross.private-repo.base") version "0.15.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.15.0")
}
}
apply(plugin = "ws.gross.private-repo.base")
Using the plugins DSL:
plugins {
id "ws.gross.private-repo.base" version "0.15.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.15.0"
}
}
apply plugin: "ws.gross.private-repo.base"