搜索 Gradle 插件

版本 1.0.0 (最新版)

1.0.0

创建于 2023年12月16日。

生成有关构建信息的一个插件。

使用 plugins DSL

plugins {
  id("net.h34t.buildinfo") version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.h34t:buildinfo:1.0.0")
  }
}

apply(plugin = "net.h34t.buildinfo")

使用 plugins DSL

plugins {
  id "net.h34t.buildinfo" version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.h34t:buildinfo:1.0.0"
  }
}

apply plugin: "net.h34t.buildinfo"

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