You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INTRODUCTION
This feature is about Maven being able to automatically download source for dependent projects and compile them.
The desired procedure would be to:
manually check out the project you wish to build
run maven on it
Maven itself would then:
read through dependencies,
checkout each of the dependencies from Source Control system
This would for example solve the issue of re-build everything from an arbitrary node on dependency graph e.g. creating a hotfix for some big application.
IMPLEMENTATION
It would require to have a list of all known groupId/artifactId/version with they corresponding location. Maven would know the location of this list (it can be provided in settings.xml) and for each dependency it would check this list to see where to get the it's source.
Miks Rozenbergs opened MNG-1326 and commented
INTRODUCTION
This feature is about Maven being able to automatically download source for dependent projects and compile them.
The desired procedure would be to:
Maven itself would then:
This would for example solve the issue of re-build everything from an arbitrary node on dependency graph e.g. creating a hotfix for some big application.
IMPLEMENTATION
It would require to have a list of all known groupId/artifactId/version with they corresponding location. Maven would know the location of this list (it can be provided in settings.xml) and for each dependency it would check this list to see where to get the it's source.
4 votes, 3 watchers