move gradleBuildCache inside Project Dir

This commit is contained in:
Sinan Ta 2024-01-12 10:50:53 +01:00
parent 6765395298
commit 2e510dca45
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -73,3 +73,4 @@ gradle.properties
gradlew gradlew
gradlew.bat gradlew.bat
gradle/ gradle/
.gradleBuildCache/

View File

@ -82,13 +82,13 @@ tasks.named<BootBuildImage>("bootBuildImage") {
buildCache { buildCache {
bind { bind {
source.set("/tmp/.gradleCache/cache-${project.name}.build") source.set(".gradleBuildCache/cache-${project.name}.build")
} }
} }
launchCache { launchCache {
bind { bind {
source.set("/tmp/.gradleCache/cache-${project.name}.launch") source.set(".gradleBuildCache/cache-${project.name}.launch")
} }
} }
} }