Changeset 1271

Show
Ignore:
Timestamp:
01/25/09 15:51:22 (3 years ago)
Author:
amandel
Message:

Update findbugs to 1.3.7

Location:
trunk
Files:
1 added
8 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGES

    r1259 r1271  
    77  * Update to commons-cli 1.1 
    88  * Update to docbook-xsl 1.73.2 
    9   * Update to FindBugs 1.3.3 (#45) (JRE 5 required) 
     9  * Update to FindBugs 1.3.7 (#45) (JRE 5 required) 
    1010  * Update to PMD 4.1 
    11   * Update to fb-contrib 3.4.2 
     11  * Update to fb-contrib 3.6.1 
    1212  * Update to Checkstyle 4.4 
    1313  * Fixed bugs: #43 #50 #53 
  • trunk/config/build-report.xml

    r1255 r1271  
    7878            <include name="default/jaxen/*.jar"/> 
    7979            <include name="default/dom4j/*.jar"/> 
     80            <include name="default/commons-lang/*.jar"/> 
    8081            <exclude name="**/fb-contrib.jar"/> 
    8182         </fileset> 
    8283      </path> 
    8384      <path id="findbugs.plugins"> 
    84                   <path location="${base.dir}/lib/default/fb-contrib/fb-contrib.jar"/> 
     85        <path location="${base.dir}/lib/default/fb-contrib/fb-contrib.jar"/> 
    8586      </path> 
    8687      <!-- This is the auxiliary classpath used by findbugs -->    
     
    105106                maxheap="128" 
    106107                encoding="US-ASCII" 
    107                 cpus="1"> <!-- Increase to speed up --> 
     108                cpus="0"> <!-- Increase to speed up --> 
    108109         <classpath refid="jcreport.classpath"/> 
    109110         <reports>    
     
    111112                    level="test" 
    112113                    sourcepath="${base.dir}/test/java" 
    113                     classpath="${build.dir}/classes"> 
     114                    classpath="${build.dir}/test-classes"> 
    114115            </report>     
    115116            <report name="fawkez-prod" 
  • trunk/config/ivy.xml

    r1177 r1271  
    3535            <artifact name="fop-hyph"/> 
    3636        </dependency> 
    37         <dependency org="findbugs" name="findbugs" rev="1.3.5"> 
     37        <dependency org="findbugs" name="findbugs" rev="1.3.7"> 
    3838            <artifact name="bcel" type="jar"/> 
    3939            <artifact name="findbugs" type="jar"/> 
    4040            <artifact name="findbugs-ant" type="jar"/> 
    4141            <artifact name="jsr305" type="jar"/> 
     42            <artifact name="jFormatString" type="jar"/> 
    4243        </dependency> 
     44        <dependency org="commons-lang" name="commons-lang" rev="2.4" /> 
    4345        <dependency org="fb-contrib" name="fb-contrib" rev="3.6.1"/> 
    4446        <dependency org="luntsys" name="luntbuild" rev="1.3.4"> 
  • trunk/src/xml/findbugs/findbugs.xsd

    r1160 r1271  
    205205                 minOccurs='0' maxOccurs='unbounded'/> 
    206206   </xsd:sequence> 
     207   <xsd:attribute name="errors" type="xsd:unsignedInt" use="optional"/> 
     208   <xsd:attribute name="missingClasses" type="xsd:unsignedInt" use="optional"/> 
    207209  </xsd:complexType> 
    208210 </xsd:element> 
     
    267269   <xsd:attribute name='descriptor'  type='xsd:string' use='required'/> 
    268270   <xsd:attribute name='role' use='optional' type="xsd:string"/> 
     271   <xsd:attribute name='typeParameters' use='optional' type='xsd:string'/> 
    269272  </xsd:complexType> 
    270273 </xsd:element> 
     
    328331      </xsd:element> 
    329332      <xsd:element ref='PackageStats' maxOccurs='unbounded'/> 
     333      <xsd:element ref="FindBugsProfile" minOccurs="0" maxOccurs="1"/> 
    330334   </xsd:sequence> 
    331335   <xsd:attribute name='timestamp' use='required' type='xsd:string'/> 
    332336   <xsd:attribute name='total_classes' use='required' type='xsd:int'/> 
     337   <xsd:attribute name="referenced_classes" type="xsd:unsignedInt" use="optional"/> 
    333338   <xsd:attribute name='total_bugs' use='required' type='xsd:int'/> 
    334339   <xsd:attribute name='total_size' use='required' type='xsd:int'/> 
    335340   <xsd:attribute name='num_packages' use='required' type='xsd:int'/> 
     341   <xsd:attribute name="vm_version" type="xsd:string" use="optional"/> 
    336342   <xsd:attribute name="cpu_seconds" type="xsd:float" use="optional" /> 
    337343   <xsd:attribute name="clock_seconds" type="xsd:float" use="optional" /> 
     
    357363   <xsd:attribute name='priority_2' use='optional' type='xsd:int'/> 
    358364   <xsd:attribute name='priority_3' use='optional' type='xsd:int'/> 
     365  </xsd:complexType> 
     366 </xsd:element> 
     367 
     368 <xsd:element name='FindBugsProfile'> 
     369  <xsd:complexType> 
     370   <xsd:sequence> 
     371    <xsd:element ref="ClassProfile" minOccurs="0" maxOccurs="unbounded"/> 
     372   </xsd:sequence> 
     373   <xsd:attribute name='name' use='required' type='xsd:string'/> 
     374   <xsd:attribute name="totalMilliseconds" type="xsd:unsignedInt" use="required"/> 
     375   <xsd:attribute name="invocations" type="xsd:unsignedInt" use="required"/> 
     376   <xsd:attribute name="avgMicrosecondsPerInvocation" type="xsd:unsignedInt" use="required"/> 
     377  </xsd:complexType> 
     378 </xsd:element> 
     379 
     380 <xsd:element name='ClassProfile'> 
     381  <xsd:complexType> 
     382   <xsd:attribute name='name' use='required' type='xsd:string'/> 
     383   <xsd:attribute name="totalMilliseconds" type="xsd:unsignedInt" use="required"/> 
     384   <xsd:attribute name="invocations" type="xsd:unsignedInt" use="required"/> 
     385   <xsd:attribute name="avgMicrosecondsPerInvocation" type="xsd:unsignedInt" use="required"/> 
    359386  </xsd:complexType> 
    360387 </xsd:element>