Skip to content

Commit

Permalink
[chore] spring 버전 변경, json 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
syyling committed Mar 5, 2024
1 parent 454fcce commit 253fe5d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.8'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
}

Expand Down Expand Up @@ -28,6 +28,10 @@ dependencies {
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

//Json
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation group: 'org.json', name: 'json', version: '20231013'
}

tasks.named('bootBuildImage') {
Expand Down

0 comments on commit 253fe5d

Please sign in to comment.