搜索 Gradle 插件

版本 1.0.7(最新版)

1.0.7

创建于 2021 年 2 月 12 日。

使用 HOCON 配置您的 Gradle 构建

使用 plugins DSL

plugins {
  id("net.gradleutil.conf") version "1.0.7"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.gradleutil:gradle-conf:1.0.7")
  }
}

apply(plugin = "net.gradleutil.conf")

使用 plugins DSL

plugins {
  id "net.gradleutil.conf" version "1.0.7"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.gradleutil:gradle-conf:1.0.7"
  }
}

apply plugin: "net.gradleutil.conf"

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