Martmists
12/19/2024, 3:55 PMproject.providers.gradleProperty(name)
, is there a way I can set this property in my build script? I need some custom logic to set it, but project.ext, gradle.extraProperties and even project.properties seem to all be ignored.Vampire
12/19/2024, 3:57 PMMartmists
12/19/2024, 3:57 PMVampire
12/19/2024, 4:00 PMproviders.gradleProperty
the value must come from the root project gradle.properties
file, commandline -P
switch, a system property, or an environment variable.Vampire
12/19/2024, 4:02 PMVampire
12/19/2024, 4:04 PMproject.findProperty
.Vampire
12/19/2024, 4:07 PMMartmists
12/19/2024, 4:10 PMAnd the issue you entered will most likely be closed as works-as-designed by the Gradle folksThis is something I don't quite understand, they made an entire build system so you could use code to configure your build, then decide it's better to ignore that part and instead use property files for settings?
Vampire
12/19/2024, 4:15 PMProperty<...>
properties.Javi
12/19/2024, 5:09 PM