Search Gradle plugins

ws.gross.bootstrap-manifest

Gradle plugin to generate bootstrap manifest files (properties file with ids and version fields) to use with nexusPrivatePluginsBootstrap feature in private-repo plugin.

https://github.com/grossws/private-repo

Sources: https://github.com/grossws/gradle-private-repo-plugin.git

Version 0.4.0-rc.5

Created 16 April 2021.

Gradle plugin to generate bootstrap manifest files (properties file with ids and version fields) to use with nexusPrivatePluginsBootstrap feature in private-repo plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ws.gross.bootstrap-manifest") version "0.4.0-rc.5"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ws.gross.bootstrap-manifest:ws.gross.bootstrap-manifest.gradle.plugin:0.4.0-rc.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ws.gross.bootstrap-manifest")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ws.gross.bootstrap-manifest:ws.gross.bootstrap-manifest.gradle.plugin:0.4.0-rc.5")
      }
    }
    
    apply(plugin = "ws.gross.bootstrap-manifest")
  • Applying plugins to all subprojects .