Skip to content

Commit

Permalink
feat: gradle 버젼 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
starwook committed Jan 25, 2024
1 parent 37a12fc commit edd43eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions backend/webrtc-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-websocket'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'org.projectlombok:lombok'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'

implementation 'org.projectlombok:lombok'
testImplementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void afterConnectionEstablished(WebSocketSession session) throws Exceptio
}catch (Exception e){
logger.debug("에러 발생:"+e.getMessage());
}

}

private void sendMessage(WebSocketSession session,WebSocketMessage message){
try{
session.sendMessage(new TextMessage(objectMapper.writeValueAsString(message)));
Expand Down

0 comments on commit edd43eb

Please sign in to comment.