搜索 Gradle 插件

版本 1.0.1 (最新版)

1.0.1

创建于 2021 年 11 月 7 日。

本地属性插件。使用 gradle.local.properties 重写属性

使用 插件 DSL

plugins {
  id("io.jumpco.open.gradle.local-properties") version "1.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.jumpco.open:local-properties-plugin:1.0.1")
  }
}

apply(plugin = "io.jumpco.open.gradle.local-properties")

使用 插件 DSL

plugins {
  id "io.jumpco.open.gradle.local-properties" version "1.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.jumpco.open:local-properties-plugin:1.0.1"
  }
}

apply plugin: "io.jumpco.open.gradle.local-properties"

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