Search Gradle plugins

com.admc.javaPropFile

Load a Java Map or your Gradle Project from Java properties files. Expand map key references like ${this} in any text string or file.

http://admc.com/projectdocs/gradle-javaPropFile-plugin/readme.html

Version 1.0.0 (latest)

Created 17 October 2014.

Support Gradle 2.0 and 2.1. Set up to publish to Bintray.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.admc.javaPropFile") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.admc.javaPropFile:com.admc.javaPropFile.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.admc.javaPropFile")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.admc.javaPropFile:com.admc.javaPropFile.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.admc.javaPropFile")
  • Applying plugins to all subprojects .