From 4e88fca46f9867c99fabd90ebc86421132acc780 Mon Sep 17 00:00:00 2001 From: donghoony Date: Sun, 15 Dec 2024 16:32:19 +0900 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20H2=20TestRuntimeOnly=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95,=20Swagger=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/build.gradle | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 4981440a7..9de8a1c8c 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -30,20 +30,24 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-cache' - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0' implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'io.micrometer:micrometer-registry-prometheus' implementation 'org.flywaydb:flyway-core' implementation 'org.flywaydb:flyway-mysql' - runtimeOnly 'com.h2database:h2' runtimeOnly 'com.mysql:mysql-connector-j' - annotationProcessor 'org.projectlombok:lombok' + + // ConfigurationProperties annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' + // Test dependencies + testImplementation 'org.springframework.boot:spring-boot-starter-test' + testRuntimeOnly 'com.h2database:h2' + + // Lombok + annotationProcessor 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok' testImplementation 'org.projectlombok:lombok' - testImplementation 'org.springframework.boot:spring-boot-starter-test' // RestDocs asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:3.0.1' From 0144d493cfd0e9c9b831e5ebed14b58001b1058c Mon Sep 17 00:00:00 2001 From: donghoony Date: Sun, 15 Dec 2024 16:39:32 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=EC=99=B8=EB=B6=80=20=EC=9D=98?= =?UTF-8?q?=EC=A1=B4=EC=84=B1=20=EB=B2=84=EC=A0=84=20=EB=AA=85=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 9de8a1c8c..bb91455d1 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -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' From d9048d78ae6eac0c72dea0bc6b63e638872be4f6 Mon Sep 17 00:00:00 2001 From: donghoony Date: Mon, 16 Dec 2024 21:26:57 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=EC=99=B8=EB=B6=80=20=EC=9D=98?= =?UTF-8?q?=EC=A1=B4=EC=84=B1=20=EB=B2=84=EC=A0=84=20=EB=AA=85=EC=8B=9C=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/build.gradle | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index bb91455d1..f5457c003 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -31,29 +31,29 @@ 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:1.13.1' - implementation 'org.flywaydb:flyway-core:10.10.0' - implementation 'org.flywaydb:flyway-mysql:10.10.0' + implementation 'io.micrometer:micrometer-registry-prometheus' + implementation 'org.flywaydb:flyway-core' + implementation 'org.flywaydb:flyway-mysql' - runtimeOnly 'com.mysql:mysql-connector-j:8.3.0' + runtimeOnly 'com.mysql:mysql-connector-j' // ConfigurationProperties annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' // Test dependencies testImplementation 'org.springframework.boot:spring-boot-starter-test' - testRuntimeOnly 'com.h2database:h2:2.2.224' + testRuntimeOnly 'com.h2database:h2' // Lombok - annotationProcessor 'org.projectlombok:lombok:1.18.32' - testAnnotationProcessor 'org.projectlombok:lombok:1.18.32' - testImplementation 'org.projectlombok:lombok:1.18.32' + annotationProcessor 'org.projectlombok:lombok' + testAnnotationProcessor 'org.projectlombok:lombok' + testImplementation 'org.projectlombok:lombok' // RestDocs - asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:3.0.1' - testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc:3.0.1' - testImplementation 'io.rest-assured:spring-mock-mvc:5.4.0' - testImplementation 'io.rest-assured:rest-assured:5.4.0' + asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor' + testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc' + testImplementation 'io.rest-assured:spring-mock-mvc' + testImplementation 'io.rest-assured:rest-assured' } ext {