Skip to content

Commit 5103c31

Browse files
committed
..^^
1 parent 0b6e65b commit 5103c31

1 file changed

Lines changed: 19 additions & 21 deletions

File tree

build.gradle

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,51 +6,49 @@ plugins {
66

77
group = 'com.gathertree'
88
version = '0.0.1-SNAPSHOT'
9+
description = 'Demo backend for GatherTree Christmas event web app'
910

1011
java {
1112
toolchain {
1213
languageVersion = JavaLanguageVersion.of(21)
1314
}
1415
}
1516

16-
repositories {
17-
mavenCentral()
17+
configurations {
18+
compileOnly {
19+
extendsFrom annotationProcessor
20+
}
1821
}
1922

20-
/**
21-
* AWS SDK BOM
22-
*/
23-
dependencyManagement {
24-
imports {
25-
mavenBom "software.amazon.awssdk:bom:2.25.60"
26-
}
23+
repositories {
24+
mavenCentral()
2725
}
2826

2927
dependencies {
30-
// 🌱 Spring Boot Core
28+
// Spring Boot 기본
3129
implementation 'org.springframework.boot:spring-boot-starter-web'
3230
implementation 'org.springframework.boot:spring-boot-starter-validation'
3331
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
34-
implementation 'org.springframework.boot:spring-boot-starter-actuator'
32+
3533

3634
// Swagger
3735
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
3836

39-
// AWS SDK
40-
implementation 'software.amazon.awssdk:s3'
37+
// AWS S3
38+
implementation 'software.amazon.awssdk:s3:2.25.60'
39+
40+
// 로그 (명시적으로 고정)
41+
implementation 'org.slf4j:slf4j-api:2.0.16'
42+
implementation 'ch.qos.logback:logback-classic:1.5.12'
4143

4244
// Lombok
43-
compileOnly 'org.projectlombok:lombok'
44-
annotationProcessor 'org.projectlombok:lombok'
45+
compileOnly 'org.projectlombok:lombok:1.18.36'
46+
annotationProcessor 'org.projectlombok:lombok:1.18.36'
47+
4548

4649
testImplementation 'org.springframework.boot:spring-boot-starter-test'
47-
}
4850

49-
configurations.all {
50-
resolutionStrategy {
51-
force 'ch.qos.logback:logback-classic:1.4.14'
52-
force 'ch.qos.logback:logback-core:1.4.14'
53-
}
51+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
5452
}
5553

5654
tasks.named('test') {

0 commit comments

Comments
 (0)