搜索Gradle插件

io.github.fobo66.propertiesloader

所有者: Andrey Mukamolov

一个帮助您将敏感数据(如API密钥)从.properties文件加载到项目额外功能中的插件,以便您可以直接从ext使用这些敏感密钥

https://github.com/fobo66/propertiesLoader

源代码:https://github.com/fobo66/propertiesLoader.git

版本 1.0(最新版)

1.0

创建于2019年10月2日。

一个帮助您将敏感数据(如API密钥)从.properties文件加载到项目额外功能中的插件,以便您可以直接从ext使用这些敏感密钥

使用plugins DSL

plugins {
  id("io.github.fobo66.propertiesloader") version "1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.fobo66.propertiesloader:properties-loader:1.0")
  }
}

apply(plugin = "io.github.fobo66.propertiesloader")

使用plugins DSL

plugins {
  id "io.github.fobo66.propertiesloader" version "1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.fobo66.propertiesloader:properties-loader:1.0"
  }
}

apply plugin: "io.github.fobo66.propertiesloader"

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