搜索 Gradle 插件

版本 1.0.0(最新版)

1.0.0

创建于 2022年9月6日。

从声明的文件中更新构建数据,确保各种构建文件保持同步

使用 插件 DSL

plugins {
  id("com.legyver.build-data") version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.legyver:build-data:1.0.0")
  }
}

apply(plugin = "com.legyver.build-data")

使用 插件 DSL

plugins {
  id "com.legyver.build-data" version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.legyver:build-data:1.0.0"
  }
}

apply plugin: "com.legyver.build-data"

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