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

If Project B has a dependency on Project A.

Do I need to do a maven install on Project A every single time I make a change to one of the classes in A in order for B to see the update?

share|improve this question

1 Answer

up vote 0 down vote accepted

It depends how you created the projects. If you have a common parent pom, then you won't need to run mvn install for one project to see the changes on the other.

If the projects don't share a common parent pom, I think it might be better to configure eclipse manually so it knows that B depends on A, and you'll also need to remove the dependency on the snapshot jar (otherwise you might get funky classloader errors). I have to say that every time that I had projects dependencies like this, the projects shared a common parent.

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.