Skip to content

Commit

Permalink
#27 chore(build.gradle): testcontainers 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sim-mer committed Oct 24, 2024
1 parent e4e393a commit e2456f8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,14 @@ dependencies {

//S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'

//Test
testImplementation 'org.testcontainers:testcontainers:1.20.2'
testImplementation 'org.testcontainers:junit-jupiter:1.20.2'
testImplementation 'org.testcontainers:mysql:1.20.2'

}

tasks.named('test') {
useJUnitPlatform()
}

0 comments on commit e2456f8

Please sign in to comment.