搜索 Gradle 插件

版本 5.4.0(最新版)

5.4.0

创建于 2024 年 7 月 9 日。

一个用于生成任何类型 Gradle 项目的 BuildConstants 的插件:Java、Kotlin、Groovy 等。为 KTS 脚本设计。

使用 插件 DSL

plugins {
  id("com.github.gmazzo.buildconfig") version "5.4.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.gmazzo.buildconfig:plugin:5.4.0")
  }
}

apply(plugin = "com.github.gmazzo.buildconfig")

使用 插件 DSL

plugins {
  id "com.github.gmazzo.buildconfig" version "5.4.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.gmazzo.buildconfig:plugin:5.4.0"
  }
}

apply plugin: "com.github.gmazzo.buildconfig"

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