io.github.fobo66.propertiesloader
Owner: Andrey Mukamolov
A plugin that helps you with loading sensitive data like API keys from .properties files into project extras, so you can use these sensitive keys right from ext
https://github.com/fobo66/propertiesLoader
Sources: https://github.com/fobo66/propertiesLoader.git
Version 1.0 (latest)
1.0
Created 02 October 2019.
A plugin that helps you with loading sensitive data like API keys from .properties files into project extras,
so you can use these sensitive keys right from ext
Using the plugins DSL:
plugins {
id("io.github.fobo66.propertiesloader") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.fobo66.propertiesloader:properties-loader:1.0")
}
}
apply(plugin = "io.github.fobo66.propertiesloader")
Using the plugins DSL:
plugins {
id "io.github.fobo66.propertiesloader" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.fobo66.propertiesloader:properties-loader:1.0"
}
}
apply plugin: "io.github.fobo66.propertiesloader"