when I open the maven project in eclipse it compiles fine but when I do "mvn package" it fails.
How do I solve this problem?
|
|
|
AnnotationProcessorFactory (APT) is a standard tool and supplied as part of the JDK. You are missing tools.jar into your classpath. Check your Java installation. |
|||
|
|
|
Make sure that you are running Maven from a JDK. Also, for Java 7, try to force a Dependency to tools.jar
|
||||
|
|
|
I solved the problem by doing "update maven project" from within eclipse. |
|||
|
|