I'm trying to add some new reports to our existing project/site and
right now I'm working on Findbugs...

When I run Findbugs, it outputs the following:
The following classes needed for analysis were missing:
 javax.jms.Message
 com.abc.vo.AbstractBusinessValue
 com.abc.vo.IValueObject
 javax.xml.xpath.XPathException
 javax.jms.ConnectionFactory
 javax.jms.Destination
 javax.servlet.ServletRequest
 javax.jms.JMSException

The com.abc.vo.* files are in the module I'm compiling. And the
javax.* files are all referenced in my pom.xml with proper
dependencies.

I've tried adjusting the scope from provided to compile, runtime, and
test for the javax.* classes but I always get the same error message
when Findbugs runs.

I'm wondering why those jars aren't automatically added to the
Findbugs "auxiliary classpath", and if they're supposed to be added,
why its not working for me.

My findbugs declaration is below:
<reporting>
<plugins>
     <plugin>
       <groupId>org.codehaus.mojo</groupId>
       <artifactId>findbugs-maven-plugin</artifactId>
       <version>1.0.0</version>
     </plugin>

I'm sure there's lots of you using Findbugs, so perhaps you've run
into these problems and found some solutions? Thanks for any advice!

Wayne

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to