Project failed to build for me due to the @Override annotations on methods from Runnable and Callable in VoicePrintConcurrencyTest.java. This is because that annotation is only allowed on interface methods from Java 1.6 onwards. By specifying the source and target versions in the POM (instead of accepting whatever defaults may be in effect from IDE, etc.), the error is fixed.
Project failed to build for me due to the @Override annotations on methods from Runnable and Callable in VoicePrintConcurrencyTest.java. This is because that annotation is only allowed on interface methods from Java 1.6 onwards. By specifying the source and target versions in the POM (instead of accepting whatever defaults may be in effect from IDE, etc.), the error is fixed.