Is there a way to validate all dependencies in a v...
# community-support
p
Is there a way to validate all dependencies in a version-catalog exist before publishing it. Other than having a checker project with the same dependencies. The problem with this checker project mechanism is that a developer can add a dependency in the catalog but forgetting to add it in the checker.
I will proceed with a for loop requesting an http-get of each dependency pom.xml file.
v
You should be able to iterate through the entries, adding them as dependencies to some checker configuration that you then resolve too.
p
I see much better
👌 1