Yo guys! We’re experimenting with build/distributed cache and Gradle 3.5. We have noticed that with Gradle 3.3, the “jar” task was cached with our distributed cache impl. With Gradle 3.5 it is no longer cached. We even tried “quickstart” java project from Gradle samples, we enabled local build cache, ran clean build few times, and we see “jar” task executed each time. In Gradle 3.3 we used distributed cache and we saw jar task cached. Is this a know limitation? (we looked on forums but did not find).
Output from building quickstart sample with local cache enabled with Gradle 3.5:
:clean
:compileJava FROM-CACHE
:processResources
:classes
:jar
:assemble
:compileTestJava FROM-CACHE
:processTestResources
:testClasses
:test FROM-CACHE
:check UP-TO-DATE
:build