This message was deleted.
# community-support
s
This message was deleted.
i
ah nvm... I think I can use this
Copy code
println providers.gradleProperty('gradlePropertiesProp').get()
v
Not really. Despite its name this does not return Gradle properties, but only project properties. There are slight differences between those two and you only get what you expect if the project property happens to have the same value as the gradle property, for example because you set it through
gradle.properties
and do not override either with another way.
But just run with debug logging, or look at the process list.
Or use the JVM arg
-XshowSettings:vm
if you run a VM that supports it
👀 1
i
thanks for the suggestions, i'll give this a shot