Skip to content

Commit

Permalink
chore: build.gradle 및 application.yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
juno-junho committed Sep 13, 2023
1 parent 9af1d80 commit 48c034d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
// 테스트 환경 lombok 설정
testImplementation 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ spring:
config:
activate:
on-profile: prod
import: classpath:sub/application-db.yml, classpath:sub/application-token.yml
import: sub/application-db.yml, sub/application-token.yml
---
spring:
config:
activate:
on-profile: dev
import: classpath:dev/application-dev.yml, classpath:sub/application-token.yml
import: dev/application-dev.yml, sub/application-token.yml

0 comments on commit 48c034d

Please sign in to comment.