Merge branch 'main' into CacheVersionUpdateTo3

This commit is contained in:
Evgenii Korolevskii
2022-06-24 15:42:06 +02:00
4 changed files with 16 additions and 4 deletions

6
dist/setup/index.js vendored
View File

@ -101384,7 +101384,11 @@ const supportedPackageManager = [
path: [
path_1.join(os_1.default.homedir(), '.ivy2', 'cache'),
path_1.join(os_1.default.homedir(), '.sbt'),
getCoursierCachePath()
getCoursierCachePath(),
// Some files should not be cached to avoid resolution problems.
// In particular the resolution of snapshots (ideological gap between maven/ivy).
'!' + path_1.join(os_1.default.homedir(), '.sbt', '*.lock'),
'!' + path_1.join(os_1.default.homedir(), '**', 'ivydata-*.properties')
],
pattern: ['**/*.sbt', '**/project/build.properties', '**/project/**.{scala,sbt}']
}