Search Gradle plugins

ws.gross.private-repo.bootstrap

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.14.5

Created 25 February 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.14.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ws.gross.gradle:private-repo:0.14.5")
  }
}

apply(plugin = "ws.gross.private-repo.bootstrap")

Using the plugins DSL:

plugins {
  id "ws.gross.private-repo.bootstrap" version "0.14.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ws.gross.gradle:private-repo:0.14.5"
  }
}

apply plugin: "ws.gross.private-repo.bootstrap"

Learn how to apply plugins to subprojects