Skip to content

Commit

Permalink
✨ feat(build.gradle): Add buildWorkspace, buildCache, and launchCac…
Browse files Browse the repository at this point in the history
…he configurations.
  • Loading branch information
vnobo committed Dec 17, 2024
1 parent c783fdd commit 9af253e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ configure(subprojects - project(":boot")) { project ->
"BPE_APPEND_JAVA_TOOL_OPTIONS": "-Dfile.encoding=UTF-8 " +
"-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager"
]
buildWorkspace {
bind {
source = "/tmp/cache-${rootProject.name}-${project.name}.work"
}
}
buildCache {
bind {
source = "/tmp/cache-${rootProject.name}-${project.name}.build"
}
}
launchCache {
bind {
source = "/tmp/cache-${rootProject.name}-${project.name}.launch"
}
}
}

configurations {
Expand Down

0 comments on commit 9af253e

Please sign in to comment.