- force re-download project dependencies
https://www.cloudhadoop.com/gradle-force-update#google_vignette
gradlew build --refresh-dependencies
configurations.all {
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
}
implementation("...:1.0-SNAPSHOT") {
isChanging = true
}
https://findmypiece.tistory.com/m/351
- handling version
https://docs.gradle.org/current/userguide/dynamic_versions.html
- cache 사용 안함
gradle.properties 파일에 아래 내용 추가
org.gradle.caching=false
https://docs.gradle.org/current/userguide/build_cache.html
'gradle' 카테고리의 다른 글
Generating Javadoc With Gradle (0) | 2024.02.29 |
---|---|
gradle customizing - gradle 설치 디렉토리 및 파일들 (0) | 2023.10.06 |
gradle 호환성 (0) | 2023.02.26 |
repository server http 사용하도록 하는 설정 (0) | 2023.02.20 |
spring-boot-gradle-plugin (0) | 2023.02.12 |