Hi All, I am new to Gradle. I am also new to a pr...
# community-support
d
Hi All, I am new to Gradle. I am also new to a project with a code base in Java and Kotlin, Gradle 8.9, JDK 21. I am trying to update the Gradle dependencies and started with
./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.
t
./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)
d
Hi all, sorry about the repost from Gradle Forums, I discovered the Slack option after posting. Thank you @Thomas Broyer and @Vampire for replying so fast! Great to be here!
👌 1
v
You're welcome, but its Björn or Bjoern, not Bjorn 😉
👍 1