Skip to content

Commit 61e7b26

Browse files
committed
feat: gradle 캐시 설정 추가
1 parent e0b3b59 commit 61e7b26

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

chat/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
gradle.settingsEvaluated {
2+
buildCache {
3+
local {
4+
isEnabled = true
5+
directory = File(rootDir, ".gradle/build-cache")
6+
}
7+
}
8+
}
9+
110
plugins {
211
java
312
id("org.springframework.boot") version "3.4.2"

default/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
gradle.settingsEvaluated {
2+
buildCache {
3+
local {
4+
isEnabled = true
5+
directory = File(rootDir, ".gradle/build-cache")
6+
}
7+
}
8+
}
9+
110
plugins {
211
id("java")
312
id("org.springframework.boot") version "3.4.2"

0 commit comments

Comments
 (0)