I\'m using Intellij 13, I\'ve been using Maven quite happily for awhile now to manage the JAR dependencies.
But the last few I\'ve imported are causing a broken classpat
In my case I was having this exact problem because I was trying to import a local jar-with-dependencies without classifier. To solve this I just needed to add jar-with-dependencies to the maven dependency, e.g.:
jar-with-dependencies
com.my.group myartifact 1.0 jar-with-dependencies
Hope this helps someone.