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.

link|improve this question

77% accept rate
Are you using the most up-to-date version of FindBugs? I notice they mention that Java 5 is required for version 2 (of the plug-in) – Rulmeq Jul 14 '10 at 15:55
I'm using version 2.3.1. – Aaron Digulla Jul 15 '10 at 10:21
feedback

2 Answers

up vote 1 down vote accepted

I believe you are missing the targetJdk element in the plugin configuration, like in below snippet.

   <reporting>
     <plugins>
       <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.0.1</version>
        <configuration>
          <targetJdk>1.5</targetJdk>
        </configuration>
       </plugin>
     </plugins>
   </reporting>
link|improve this answer
Unfortunately, this doesn't work. targetJdk is supported for the PMD plugin but not for FindBugs :-( – Aaron Digulla Jul 15 '10 at 10:23
1  
This actually works but there are a couple of caveats: 1. Specifying the plugin version in a pluginManagement section doesn't work. 2. The option works despite the fact that it's not mentioned anywhere: Not in the docs, not by mvn help:describe ... odd. – Aaron Digulla Jul 15 '10 at 13:39
feedback

Make sure your Maven build plugin is compiling to 1.5, and not 1.4.

        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
            </configuration>
        </plugin>
link|improve this answer
If these options were not set, the build would fail way before the FindBugs plugin is called (so yes, I'm 100% confident that I create Java 5 bytecode). – Aaron Digulla Jul 14 '10 at 15:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.