liquidz / antq

Point out your outdated dependencies.
Other
394 stars 22 forks source link

fix: Respect custom repositories when checking transitive deps #232

Closed marcobiscaro2112 closed 11 months ago

marcobiscaro2112 commented 11 months ago

Previously we were hardcoding the standard maven repositories when checking for outdated transitive dependencies, which means that it didn't work in projects that use custom maven repositories.

This change preserves the original repositories from the project when checking for transitive dependencies. We fallback to standard repositories (Maven Central and Clojars) if the project doesn't specify any repositories.

Fixes https://github.com/liquidz/antq/issues/230.