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.18.0-rc.6 (latest)

0.18.0-rc.6

Created 06 July 2023.

Gradle Settings plugin to apply bootstrap manifests for this build. Resolves and parses manifest, adds plugin declaration to pluginManagement and version catalogs to dependencyResolutionManagement.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ws.gross.private-repo.bootstrap") version "0.18.0-rc.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ws.gross.gradle:private-repo:0.18.0-rc.6")
      }
    }
    
    apply(plugin = "ws.gross.private-repo.bootstrap")
  • Applying plugins to all subprojects .