반응형
gradle 이나 maven, nexus를 이용하며, library를 관리 하게 되면, 라이브러리를 release 하기 전에 snspshot 파일로 사용한다. 이때 snapshot 파일이 최신파일로 적용이 잘 안될때가 있다. 이때 다음과 같은 옵션으로 사용하면 항상 최신 파일을 읽어 오도록 설정된다.
gradle
// changing 값을 true 로 지정한다.
compile("media.report.library:media-report-library-model:${model_version}") { changing = true }
maven
build > build tool > maven > alwas update snapshots > check
반응형
'Spring' 카테고리의 다른 글
Connection is not available, request timed out after 10000ms. (Unable to acquire JDBC Connection) (0) | 2021.07.07 |
---|---|
SpringBoot daemon application 만들기 (0) | 2021.04.29 |
Spring Muiltiple DataSource (0) | 2021.04.29 |
ehcache attribute (0) | 2017.07.11 |
Spring redirect POST 전송 RedirectAttributes Parameter (0) | 2017.05.31 |