ws.gross.bootstrap-manifest
Owner: Konstantin Gribov
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.14.1
0.14.1
Created 25 February 2022.
Gradle plugin to generate bootstrap manifest files (properties file with pluginIds, catalogIds
and version fields) to use with nexusBootstrap feature in private-repo plugin.
Also configures manifest publication.
Using the plugins DSL:
plugins {
id("ws.gross.bootstrap-manifest") version "0.14.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.14.1")
}
}
apply(plugin = "ws.gross.bootstrap-manifest")
Using the plugins DSL:
plugins {
id "ws.gross.bootstrap-manifest" version "0.14.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.14.1"
}
}
apply plugin: "ws.gross.bootstrap-manifest"