I am using Maven 3.0.3 and Findbugs Plugin 2.3.2.  My original configuration 
looked like this

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <version>${findbugs.version}</version>
                <executions>
                    <execution>
                        <phase>compile</phase> 
                        <goals>                            
                            <goal>findbugs</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

In Maven version 2.x, this would generate and xml file and an HTML file.  I did 
not have to use "mvn site" to generate this.  When upgrading to Maven 3.0.3, I 
could only use Findbugs version 2.3.2 or I would get errors.  Currently, the 
Findbugs version 2.3.2 will not generate an HTML file for this configuration.  
I added a report section that did not help:

   <reporting>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <version>${findbugs.version}</version>               
            </plugin>
        </plugins>
    </reporting> 

I do not want want to run "mvn site" in order to produce the one html file.  
Could someone please point me in the right direction??  Thank you.

Russell Collins
    
******************************************************************************************
 
This message may contain confidential or proprietary information intended only 
for the use of the 
addressee(s) named above or may contain information that is legally privileged. 
If you are 
not the intended addressee, or the person responsible for delivering it to the 
intended addressee, 
you are hereby notified that reading, disseminating, distributing or copying 
this message is strictly 
prohibited. If you have received this message by mistake, please immediately 
notify us by  
replying to the message and delete the original message and any copies 
immediately thereafter. 

Thank you. 
******************************************************************************************
 
CLLD


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to