Re: [m2e-users] Getting content of all transitive dependencies

2012-09-26 Thread Igor Fedorenko
This snippet should give dependencies of all scopes and workspace resolution enabled/disabled according to project configuration IMavenProjectRegistry registry = ...; IMavenProjectFacade facade = registry.create(project); facade.getMavenProject(monitor).getArtifacts() Use IMaven#readPro

Re: [m2e-users] Getting content of all transitive dependencies

2012-09-26 Thread Artem Grigoryev
Sorry, the correct link is https://gist.github.com/3787981 On Sep 26, 2012, at 8:25 PM, Artem Grigoryev wrote: > Hello to everyone! > > I want to get the file content of all transitive dependencies of my Eclipse > project. > I look through m2e source code and find following way to do it: >