Gradle.Tips

ignoring cache and refreshes the dependencies

./gradlew --refresh-dependencies
./gradlew resolveAndLockAll --write-locks

show tree of all dependencies

add to build.gradle.kts

subprojects {
    tasks.register<DependencyReportTask>("allDependencies"){}
}

and then call

./gradlew allDependencies
This entry was posted in Без рубрики. Bookmark the permalink.