Skip to content

Commit

Permalink
chore(build.gradle): add dependency - kafka, mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzzseong committed Mar 14, 2024
1 parent e35d8a1 commit 99f48ea
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'

implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.webjars:webjars-locator-core'
implementation 'org.webjars:sockjs-client:1.1.2'
implementation 'org.webjars:stomp-websocket:2.3.3'
Expand Down Expand Up @@ -101,6 +100,16 @@ dependencies {
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
implementation group: 'org.json', name: 'json', version: '20231013'

// websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'

// kafka
implementation 'org.springframework.kafka:spring-kafka'
implementation 'com.google.guava:guava:33.0.0-jre'

// mongodb
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
}

tasks.named('test') {
Expand Down

0 comments on commit 99f48ea

Please sign in to comment.