When I run FindBugs on my project via Maven, I get lots of these:
Can't use annotations when running in JDK 1.4 mode!
How do I fix that? Couldn't find anything in the manual.
feedback
|
|
I believe you are missing the targetJdk element in the plugin configuration, like in below snippet.
| |||||||
feedback
|
|
Make sure your Maven build plugin is compiling to 1.5, and not 1.4.
| |||
feedback
|