Common build problems
Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.1:unpack-dependencies (Extract xsd files) on project bitrepository-protocol...
See Building -> Message class creation.
The problem might occur in other situations, see BITMAG-240@jira.
Unable to find test class from dependent module
Cause: The jar file containing the class hasn't been installed to the local repository. This might either be because the install phase hasn't been called on the dependent module, or because the tests failed so the install phase wasn'r reached
Solution: Run the install goal on the dependent module. You might need to include the
-Dmaven.test.failure.ignore=true
option if failing tests need to be ignored.