搜索 Gradle 插件

版本 1.0.0 (最新)

1.0.0

创建于 2024 年 5 月 12 日。

用于使用 v3 旋转签名替换密钥的插件

使用 插件 DSL

plugins {
  id("io.github.liuxb-tofu.v3-rotate-signer") version "1.0.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.liuxb-tofu:v3-rotate-signer-plugin:1.0.0")
  }
}

apply(plugin = "io.github.liuxb-tofu.v3-rotate-signer")

使用 插件 DSL

plugins {
  id "io.github.liuxb-tofu.v3-rotate-signer" version "1.0.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.liuxb-tofu:v3-rotate-signer-plugin:1.0.0"
  }
}

apply plugin: "io.github.liuxb-tofu.v3-rotate-signer"

了解如何将插件应用到子项目中