mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 08:06:24 +00:00
kos-mock JAR 생성 활성화로 모듈 간 의존성 문제 해결
- kos-mock/build.gradle: jar { enabled = false } → jar { enabled = true }
- bill-service에서 kos-mock DTO 클래스 참조 가능하도록 수정
- 전체 서비스 빌드 성공 확인
This commit is contained in:
parent
72aa1faa76
commit
11dd091671
@ -47,11 +47,11 @@ tasks.named('test') {
|
|||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
// JAR 파일 이름 설정
|
// JAR 파일 이름 설정 (다른 모듈에서 참조할 수 있도록 enabled = true)
|
||||||
jar {
|
jar {
|
||||||
archiveBaseName = 'kos-mock-service'
|
archiveBaseName = 'kos-mock-service'
|
||||||
archiveVersion = version
|
archiveVersion = version
|
||||||
enabled = false
|
enabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
bootJar {
|
bootJar {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user