gradle-properties-plugin
gradle-properties-plugin copied to clipboard
Gradle plugin to simplify loading project properties from external environment specific files
To invoke the groovy methods installed as extension properties of Task objects by applying `gradle-properties-plugin` from the Gradle Kotlin DSL using the 'check required properties as the first line of...
Please adopt task configuration avoidance. It is present for a long time already and your plugin completely voids its time savings. For example it uses `tasks.all` instead of `tasks.configureEach` which...
Fixes/solutions: 1. https://docs.gradle.org/6.8.3/userguide/configuration_cache.html#config_cache:troubleshooting 1. https://docs.gradle.org/6.8.3/userguide/configuration_cache.html#config_cache:requirements:undeclared_sys_prop_read
I need to use a particular JDK version with Gradle in a project, so I set `org.gradle.java.home` in gradle-local.properties and applied the plugin. Unfortunately, this didn't seem to change anything....
Hello, I have a requirement to include all Plugins, my Gradle Project, depends upon, into the local project. In other words, I am required to download and include a Plugin...
We've got an android project with gradle sub projects inside a root project. We have some default configuration defined in `rootProject.ext` and used in the sub project. After applying the...
I have encountered a strange scenario when building locally every works fine, but when building on our build server, gradle reloads the system properties after loading the plugin environment properties....
There is a generally common task to provide the same Gradle properties to buildSrc project. See e.g. [this discussion](https://discuss.gradle.org/t/place-for-properties-visible-from-both-buildsrc-and-project/18916). I see that this plugin could help with that. I tried...
https://github.com/stevesaliman/gradle-properties-plugin/blob/master/src/main/groovy/net/saliman/gradle/plugin/properties/PropertiesPlugin.groovy#L93 should not query project.environmentName, but use the environmentName read out before processing all the properties and stored in a local variable. In the current version the following can happen:...
com.android.tools.build:gradle:8.1.2 Release build fails on minifyReleaseWithR8 task. ``` > Task :androidApp:minifyReleaseWithR8 FAILED AGPBI: {"kind":"error","text":"com.android.tools.r8.ResourceException: com.android.tools.r8.internal.Ub: I/O exception while reading '.../androidApp/build/intermediates/merged_java_res/release/base.jar': .../androidApp/build/intermediates/merged_java_res/release/base.jar","sources":[{"file":".../androidApp/build/intermediates/merged_java_res/release/base.jar"}],"tool":"R8"} ... FAILURE: Build failed with an exception. * What...