Daniel Grindstaff
12/26/2024, 11:11 AM./gradlew dependencyUpdates
to generate the dependency report. I am now trying ./gradlew dependencies
and ./gradlew help --task dependencies
to get the configuration information but I only get No configuration
as a result. I need some advice about where to go from here. I have read through the Gradle online help documentation, specifically dependency management but it doesn't seem to address setting new configuration for existing code. Maybe I am missing something. Any advice on how to proceed is appreciated.Thomas Broyer
12/26/2024, 3:44 PM./gradlew dependencies
will only actually apply to the root project. You'll want to try ./gradlew :subproject:dependencies
(with subproject
being the name of a subproject)Vampire
12/26/2024, 5:50 PMDaniel Grindstaff
12/27/2024, 1:39 AMVampire
12/27/2024, 2:16 AM