com.nocwriter.gradle.props
Owner:
Guy Nir
A Gradle plugin that loads external properties file into project extra properties and system properties sets.
https://github.com/NocWriter/gradle-props-plugin
Sources: https://github.com/NocWriter/gradle-props-plugin
Version 1.0 (latest)
Created 22 April 2022.
A Gradle plugin that loads external properties file into project extra properties and system properties sets.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.nocwriter.gradle.props") version "1.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.nocwriter.gradle.props:com.nocwriter.gradle.props.gradle.plugin:1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.nocwriter.gradle.props") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.nocwriter.gradle.props:com.nocwriter.gradle.props.gradle.plugin:1.0") } } apply(plugin = "com.nocwriter.gradle.props")
- Applying plugins to all subprojects .