run springBoot app with DEV profile
./gradlew bootRun --args='--spring.profiles.active=DEV'
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