Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Configuration: Controlling dependency caching programmatically (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Jun 28, 2021
1 parent 68c4d68 commit bd63dbb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions demos/optics-compiler-plugin-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ test {
events "passed", "failed", "standardOut", "standardError"
}
}

configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
4 changes: 4 additions & 0 deletions demos/refined-types-compiler-plugin-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ plugins {
}

apply plugin: "io.arrow-kt.refined-types"

configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
4 changes: 4 additions & 0 deletions demos/refined-types-library-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ test {
exceptionFormat 'full'
events "passed", "failed", "standardOut", "standardError"
}
}

configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}

0 comments on commit bd63dbb

Please sign in to comment.