Am I understanding this doc correctly in that the gradle implementation of HttpBuildCache does not support caching build outputs?
https://docs.gradle.org/current/userguide/build_cache.html#sec:build_cache_implement
Using a different build cache backend to store build outputs (which is not covered by the built-in support for connecting to an HTTP backend) requires implementing your own logic for connecting to your custom build cache backend. To this end, custom build cache types can be registered via BuildCacheConfiguration.registerBuildCacheService(java.lang.Class, java.lang.Class).
Has anyone had success implementing this themselves? I’m having trouble finding details on how to go about doing it