Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a project with the following structure:

Master (pom)
|_Project A (pom)
  |_Project A1 (jar)

Project Master manages the version of dependency xyz. The project A1 uses this dependency, but the build is broken, it complains about dependency xyz version, that its missing. Any ideas on how to propagate that version? Any help appreciated.

share|improve this question

1 Answer

You've given very little information about your project. It sounds like what you want is for Master to have a <dependencyManagement> that sets a version for xyz, and then specify the <dependency> in Project A1 without a version, letting it be dependency-managed by the declaration in Master. All you need for that is for Project A's parent to be Master and Project A1's master to be Project A. And of course, Project A mustn't interfere with the dependency management of artifact xyz. Then just add the <dependencyManagement> and <dependency> appropriately. If you think you're doing that, and it's not working, show some POMs that demonstrate your problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.