Skip to content

Commit

Permalink
[CHORE] Update build.gradle
Browse files Browse the repository at this point in the history
build.gradle에서 중복된 의존성을 제거하고, mysql의 버전을 지정하였습니다.
  • Loading branch information
bbabbi authored Oct 17, 2024
1 parent 6963d71 commit e7c5a1d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'mysql:mysql-connector-java:8.0.35'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand All @@ -35,7 +35,6 @@ dependencies {
implementation("software.amazon.awssdk:s3:2.21.0")
//actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'mysql:mysql-connector-java:8.0.35'
}

tasks.named('test') {
Expand Down

0 comments on commit e7c5a1d

Please sign in to comment.