Skip to content

Commit ffa682f

Browse files
committed
Add:의존성 추가
1 parent 9566e74 commit ffa682f

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

build.gradle.kts

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,37 @@ repositories {
2424
}
2525

2626
dependencies {
27+
implementation("org.springframework.boot:spring-boot-starter-validation")
2728
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
2829
implementation("org.springframework.boot:spring-boot-starter-security")
2930
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
3031
implementation("org.springframework.boot:spring-boot-starter-web")
3132
implementation("org.springframework.boot:spring-boot-starter-websocket")
32-
compileOnly("org.projectlombok:lombok")
3333
developmentOnly("org.springframework.boot:spring-boot-devtools")
3434
developmentOnly("org.springframework.boot:spring-boot-docker-compose")
35-
runtimeOnly("com.mysql:mysql-connector-j")
36-
annotationProcessor("org.projectlombok:lombok")
3735
testImplementation("org.springframework.boot:spring-boot-starter-test")
3836
testImplementation("org.springframework.security:spring-security-test")
3937
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
38+
// Lombok
39+
compileOnly("org.projectlombok:lombok")
40+
annotationProcessor("org.projectlombok:lombok")
41+
42+
//DB
43+
runtimeOnly("com.h2database:h2")
44+
runtimeOnly("com.mysql:mysql-connector-j")
45+
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
46+
47+
//redis
48+
implementation("org.springframework.boot:spring-boot-starter-data-redis")
49+
50+
// Security
51+
implementation("org.springframework.boot:spring-boot-starter-security")
52+
testImplementation("org.springframework.security:spring-security-test")
53+
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
54+
55+
//Swagger
56+
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
57+
implementation("org.java-websocket:Java-WebSocket:1.5.2")
4058
}
4159

4260
tasks.withType<Test> {

0 commit comments

Comments
 (0)