Parent POM not required

In my project transitive is set to false so that only defined dependencies get loaded, but during build its also looking for parent POMS. Is their a way to stop gradle from looking for parent POMS ?

Parent POMs are not transitive dependencies.
They are part of the child POM and can define versions and constraints and so on.
If you could disable parent POMs, you would change the dependency metadata and get incorrect builds by that.
So no, I don’t think there is a way to do that.

1 Like