Skip to content

Commit

Permalink
chore: 외부 의존성 버전 명시
Browse files Browse the repository at this point in the history
  • Loading branch information
donghoony committed Dec 15, 2024
1 parent 4e88fca commit 0144d49
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'org.flywaydb:flyway-core'
implementation 'org.flywaydb:flyway-mysql'
implementation 'io.micrometer:micrometer-registry-prometheus:1.13.1'
implementation 'org.flywaydb:flyway-core:10.10.0'
implementation 'org.flywaydb:flyway-mysql:10.10.0'

runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'com.mysql:mysql-connector-j:8.3.0'

// ConfigurationProperties
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

// Test dependencies
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'com.h2database:h2'
testRuntimeOnly 'com.h2database:h2:2.2.224'

// Lombok
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation 'org.projectlombok:lombok:1.18.32'

// RestDocs
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:3.0.1'
Expand Down

0 comments on commit 0144d49

Please sign in to comment.