Skip to content

Commit 80fc941

Browse files
committed
➕Dependency: build.gradle에 필요한 의존성 추가
1 parent 417ab0b commit 80fc941

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

build.gradle

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,21 @@ repositories {
1919
}
2020

2121
dependencies {
22-
implementation 'org.springframework.boot:spring-boot-starter'
22+
// web
23+
implementation 'org.springframework.boot:spring-boot-starter-web'
24+
implementation 'org.springframework.boot:spring-boot-starter-security'
25+
implementation 'org.springframework.boot:spring-boot-starter-validation'
26+
27+
// Lombok
28+
compileOnly 'org.projectlombok:lombok'
29+
annotationProcessor 'org.projectlombok:lombok'
30+
31+
// Swagger openapi-ui
32+
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.1'
33+
34+
// test
2335
testImplementation 'org.springframework.boot:spring-boot-starter-test'
36+
testImplementation 'org.springframework.security:spring-security-test'
2437
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2538
}
2639

0 commit comments

Comments
 (0)