搜索Gradle插件

版本 0.1.3 (最新版)

0.1.3

创建于 2024年7月22日。

插件生成一个属性文件,该文件可由Spring Boot Actuator Info端点使用

使用 插件DSL

plugins {
  id("io.github.KaustubhKhati.buildinfo") version "0.1.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.KaustubhKhati:spring-boot-build-info:0.1.3")
  }
}

apply(plugin = "io.github.KaustubhKhati.buildinfo")

使用 插件DSL

plugins {
  id "io.github.KaustubhKhati.buildinfo" version "0.1.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.KaustubhKhati:spring-boot-build-info:0.1.3"
  }
}

apply plugin: "io.github.KaustubhKhati.buildinfo"

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