org.gradlex.build-parameters
Owner: GradleX Team
Compile-safe access to parameters supplied to a Gradle build.
https://gradlex.org/build-parameters
Sources: https://github.com/gradlex-org/build-parameters
Version 1.4.4 (latest)
Created 05 April 2024.
Compile-safe access to parameters supplied to a Gradle build.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gradlex.build-parameters") version "1.4.4"
}
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("org.gradlex.build-parameters:org.gradlex.build-parameters.gradle.plugin:1.4.4") }
It can then be applied in the precompiled script plugin:plugins { id("org.gradlex.build-parameters") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradlex.build-parameters:org.gradlex.build-parameters.gradle.plugin:1.4.4") } } apply(plugin = "org.gradlex.build-parameters")
- Applying plugins to all subprojects .