build-parameters
build-parameters copied to clipboard
Compile-safe access to parameters supplied to a Gradle build
[Version 1.2.0 of plugin-publish plugin](https://docs.gradle.org/8.1/release-notes.html#plugin-publishing-to-the-gradle-plugin-portal) added the `--validate-only` flag which can be used to check whether a plugin will pass validity checks from the plugin portal. We should update the...
The current usage recommendation of this plugins shows all build parameters defined globally for the entire project. We typically operate with a larger root project which multiple sub-projects. Each of...
See https://github.com/policeman-tools/forbidden-apis/wiki/BundledSignatures See https://github.com/policeman-tools/forbidden-apis/wiki/GradleUsage Fixes https://github.com/gradlex-org/build-parameters/issues/91
Verifies that the parameter value is an existing File/Directory.
> PS. https://github.com/vlsi/github-actions-random-matrix and/or https://github.com/policeman-tools/forbidden-apis/wiki/BundledSignatures could help you capture such bugs in the future _Originally posted by @vlsi in https://github.com/gradlex-org/build-parameters/issues/87#issuecomment-1418600875_
When building this project I frequently see the following log message: ``` ❯ ./gradlew check Configuration cache is an incubating feature. Calculating task graph as configuration cache cannot be reused...
The plugin should verify that - group and parameter names are all valid java identifiers (starting with a letter, only letters, numbers and underscores). - group and parameter names are...
Currently a Gradle project property can be used as a source for a buildParameter but the property name is identical to the buildParameter path `.`. This causes problems when overriding...