Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a question regarding how to debug a maven project with multiple modules in IntelliJ.

I have a project which contains two modules: client and shared.

The "shared" is just a jar and the "client" depends on "shared". The client has a unit test which internally will call a class defined in the "shared" module.

However, if I setup a break point in the "shared" module, IntelliJ won't stop on that break point and simply ignore that.

My question is that how I can debug in this scenario?

Many thanks.

share|improve this question
This should just work. Are you sure you have the correct version of the JAR and sources of shared module attached? – Tomasz Nurkiewicz May 6 '12 at 16:06

1 Answer

Did you run the Unit test in Debug mode? Or did you perform a Maven build which executes the unit tests? If yes, you should try to configure the surefire plugin to wait until you attached a debugger to debug your tests.

See http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html for more details.

share|improve this answer
thank-you. i had been wondering what on earth could explain this... – andrew cooke May 7 '12 at 16:22

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.