ws.gross.private-repo.bootstrap
Owner: Konstantin Gribov
Gradle Settings plugin to apply bootstrap manifests for this build. Resolves and parses manifest, adds plugin declaration to pluginManagement and version catalogs to dependencyResolutionManagement.
https://github.com/grossws/private-repo
Sources: https://github.com/grossws/private-repo.git
Version 0.17.0
0.17.0
Created 08 November 2022.
Gradle Settings plugin to apply bootstrap manifests for this build.
Resolves and parses manifest, adds plugin declaration to pluginManagement
and version catalogs to dependencyResolutionManagement.
Using the plugins DSL:
plugins {
id("ws.gross.private-repo.bootstrap") version "0.17.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.17.0")
}
}
apply(plugin = "ws.gross.private-repo.bootstrap")
Using the plugins DSL:
plugins {
id "ws.gross.private-repo.bootstrap" version "0.17.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.17.0"
}
}
apply plugin: "ws.gross.private-repo.bootstrap"