Skip to content

Commit

Permalink
Merge pull request #9 from Leets-Official/8-bug-github-action
Browse files Browse the repository at this point in the history
8 bug GitHub Action에서 ./gradlew build 명령 실행 오류
  • Loading branch information
yechan-kim authored Jul 17, 2024
2 parents 5eca930 + 0f0234f commit 3342001
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ dependencies {
// Database 연결
implementation 'com.h2database:h2:2.1.210' // 개발 및 테스트를 위한 H2 인메모리 데이터베이스

// AWS
implementation platform("io.awspring.cloud:spring-cloud-aws-dependencies:3.1.0")
implementation 'io.awspring.cloud:spring-cloud-aws-starter-parameter-store'

// GSON
implementation "com.google.code.gson:gson:2.8.9"
}
Expand Down
11 changes: 5 additions & 6 deletions src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ spring:
config:
activate:
on-profile: dev
import: aws-parameterstore:/Dev/
datasource:
url: ${DBServer/MySQL/DB_PATH}
username: ${DBServer/MySQL/DB_USER}
password: ${DBServer/MySQL/DB_PASSWORD}
url: ${DB_PATH}
username: ${DB_USER}
password: ${DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
show-sql: true
Expand All @@ -27,5 +26,5 @@ spring:
scope: read:user
redirect-uri: "http://localhost:8080/login/callback"

jwt:
secret: ${JWT/JWT_SECRET}
jwt:
secret: ${JWT_SECRET}

0 comments on commit 3342001

Please sign in to comment.