搜索Gradle插件

ws.gross.bootstrap-manifest

Gradle插件,用于生成引导程序清单文件(包含ID和版本字段的属性文件),以与private-repo插件的nexusPrivatePluginsBootstrap功能一起使用。

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

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

版本 0.18.0-rc.6 (最新)

0.18.0-rc.6

创建于 2023年7月6日。

Gradle插件,用于生成引导程序清单文件(包含pluginIds、catalogIds和版本字段的属性文件),用于与private-repo插件的nexusBootstrap功能一起使用。还配置了清单发布。

使用插件DSL

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

使用旧插件应用

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

apply(plugin = "ws.gross.bootstrap-manifest")

使用插件DSL

plugins {
  id "ws.gross.bootstrap-manifest" version "0.18.0-rc.6"
}

使用旧插件应用

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

apply plugin: "ws.gross.bootstrap-manifest"

学习如何将插件应用于子项目