From 51824e318e6f3991944f04afaa1b56c5671e3d3c Mon Sep 17 00:00:00 2001 From: Jindongleee Date: Fri, 18 Oct 2024 23:23:42 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89Start:=20Start=20New=20Project?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- build.gradle | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 65cb0fd..ef19614 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -70,4 +70,4 @@ jobs: script: | cd /home/ubuntu/gather_back_end || exit 1 # 경로 변경 실패 시 종료 sudo docker compose --env-file .env down - sudo docker compose --env-file .env up --build -d + sudo docker compose up --build -d diff --git a/build.gradle b/build.gradle index 67a6fb9..e21a2e4 100644 --- a/build.gradle +++ b/build.gradle @@ -32,13 +32,15 @@ dependencies { implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1' implementation 'io.jsonwebtoken:jjwt-api:0.11.5' compileOnly 'org.projectlombok:lombok' - runtimeOnly 'com.mysql:mysql-connector-j' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' + + runtimeOnly 'com.mysql:mysql-connector-j' + } tasks.named('test') {