Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transitive Dependencies #12

Open
nfisher opened this issue Dec 21, 2016 · 0 comments
Open

Transitive Dependencies #12

nfisher opened this issue Dec 21, 2016 · 0 comments

Comments

@nfisher
Copy link

nfisher commented Dec 21, 2016

What are your thoughts on adding an evaluation step?

The aim is to walk the transitive dependency graph for all of the maven resources and present a new build file on stdout.

For diamond dependencies that have incompatible versions it would create one line per version.

The evaluated file would be sorted with comments stripped.

Only compile time scope would be followed.

Scenario

Given a build.dependencies file that contains a.A@1.0
And a.A@1.0 depends on b.B@1.0 and c.C@1.0
And b.B@1.0 depends on d.D@1.0
And c.C@1.0 depends on d.D@1.1
When the file is evaluated
Then stdout should contain the following:
```
mvn:a:A:jar:1.0
mvn:b:B:jar:1.0
mvn:c:C:jar:1.0
mvn:d:D:jar:1.0
mvn:d:D:jar:1.1
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant