This message was deleted.
# configuration-cache
s
This message was deleted.
j
I'm setting up the provider:
Copy code
val gitVersionProvider = project.providers.of(GitVersionValueSource::class) {}
inside the apply method of the plugin and access it
gitVersionProvider.get()
from inside the task register.
m
could you please share a build scan of a failed build or provide a more complete reproducer?
v
Hm, actually it sounds familiar to me. Something about the service getting resolved very late and then not being available anymore or something like that.
Unfortunately, I cannot remember where that conversation was and don't find it right now. 😞
j
Ok, I will work on putting together an example project.
👌 1
👍 1
Hey guys, I found the issue. My project was started with Gradle 7.4.2 and the update to 7.5 didn't work until I deleted all of my .gradle caches. So the above error is what you will see on 7.4.2 but everything works as expected on 7.5 👍
👍 1
thank you 1