Hi All, I want to extract list of repositories that any pom.xml (say A) can access. I mean repositories explicitly written in pom and all repositories accessed by its parent's POM (say B).
MavenProject.getRepositories() is doing the job only for the first time, but if I add any repository in B and then ask getRepositories(), I am not getting newly added repository, it seems, parent's POM repositories are being saved for a particular session. If I restart my application and again follow above steps..everything works well only for the first time as described above.. Any Idea? Thanks, Amaresh
