Skip to content

Commit

Permalink
fix: test 코드 빌드 방지 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
BAEKDODAM authored Mar 2, 2024
1 parent 99c39d2 commit d4119bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,14 @@ dependencies {
tasks.named('test') {
useJUnitPlatform()
}
// 테스트 코드를 제외한 빌드 수행
tasks.withType(Test) {
enabled = false
}
task copyPrivate(type: Copy) {
copy {
from './tourmate-data'
include "*.yml"
into 'src/main/resources'
}
}
}

0 comments on commit d4119bb

Please sign in to comment.