Hi,
recently I’ve upgraded to gradle m7, and have problems with fetching frequently changed snapshots. I tried both: 1) Setting changing: true to the frequently changing dependencies: compile group: ‘com.company’, name: ‘project’, version: 1.0.0-SNAPSHOT, changing: true 2) as suggested in the change log: configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, ‘seconds’ }
Still snapshots are not fetched, and I have to clean the cache every time the snapshot is question has been changed.
Do you have a solution to this problem?
Thanks!