Changeset 1271
- Timestamp:
- 01/25/09 15:51:22 (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 8 modified
-
CHANGES (modified) (1 diff)
-
config/build-report.xml (modified) (3 diffs)
-
config/ivy.xml (modified) (1 diff)
-
lib/findbugs/annotations.jar (modified) (previous)
-
lib/findbugs/bcel.jar (modified) (previous)
-
lib/findbugs/findbugs-ant.jar (modified) (previous)
-
lib/findbugs/findbugs.jar (modified) (previous)
-
lib/findbugs/jFormatString.jar (added)
-
src/xml/findbugs/findbugs.xsd (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGES
r1259 r1271 7 7 * Update to commons-cli 1.1 8 8 * 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) 10 10 * Update to PMD 4.1 11 * Update to fb-contrib 3. 4.211 * Update to fb-contrib 3.6.1 12 12 * Update to Checkstyle 4.4 13 13 * Fixed bugs: #43 #50 #53 -
trunk/config/build-report.xml
r1255 r1271 78 78 <include name="default/jaxen/*.jar"/> 79 79 <include name="default/dom4j/*.jar"/> 80 <include name="default/commons-lang/*.jar"/> 80 81 <exclude name="**/fb-contrib.jar"/> 81 82 </fileset> 82 83 </path> 83 84 <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"/> 85 86 </path> 86 87 <!-- This is the auxiliary classpath used by findbugs --> … … 105 106 maxheap="128" 106 107 encoding="US-ASCII" 107 cpus=" 1"> <!-- Increase to speed up -->108 cpus="0"> <!-- Increase to speed up --> 108 109 <classpath refid="jcreport.classpath"/> 109 110 <reports> … … 111 112 level="test" 112 113 sourcepath="${base.dir}/test/java" 113 classpath="${build.dir}/ classes">114 classpath="${build.dir}/test-classes"> 114 115 </report> 115 116 <report name="fawkez-prod" -
trunk/config/ivy.xml
r1177 r1271 35 35 <artifact name="fop-hyph"/> 36 36 </dependency> 37 <dependency org="findbugs" name="findbugs" rev="1.3. 5">37 <dependency org="findbugs" name="findbugs" rev="1.3.7"> 38 38 <artifact name="bcel" type="jar"/> 39 39 <artifact name="findbugs" type="jar"/> 40 40 <artifact name="findbugs-ant" type="jar"/> 41 41 <artifact name="jsr305" type="jar"/> 42 <artifact name="jFormatString" type="jar"/> 42 43 </dependency> 44 <dependency org="commons-lang" name="commons-lang" rev="2.4" /> 43 45 <dependency org="fb-contrib" name="fb-contrib" rev="3.6.1"/> 44 46 <dependency org="luntsys" name="luntbuild" rev="1.3.4"> -
trunk/src/xml/findbugs/findbugs.xsd
r1160 r1271 205 205 minOccurs='0' maxOccurs='unbounded'/> 206 206 </xsd:sequence> 207 <xsd:attribute name="errors" type="xsd:unsignedInt" use="optional"/> 208 <xsd:attribute name="missingClasses" type="xsd:unsignedInt" use="optional"/> 207 209 </xsd:complexType> 208 210 </xsd:element> … … 267 269 <xsd:attribute name='descriptor' type='xsd:string' use='required'/> 268 270 <xsd:attribute name='role' use='optional' type="xsd:string"/> 271 <xsd:attribute name='typeParameters' use='optional' type='xsd:string'/> 269 272 </xsd:complexType> 270 273 </xsd:element> … … 328 331 </xsd:element> 329 332 <xsd:element ref='PackageStats' maxOccurs='unbounded'/> 333 <xsd:element ref="FindBugsProfile" minOccurs="0" maxOccurs="1"/> 330 334 </xsd:sequence> 331 335 <xsd:attribute name='timestamp' use='required' type='xsd:string'/> 332 336 <xsd:attribute name='total_classes' use='required' type='xsd:int'/> 337 <xsd:attribute name="referenced_classes" type="xsd:unsignedInt" use="optional"/> 333 338 <xsd:attribute name='total_bugs' use='required' type='xsd:int'/> 334 339 <xsd:attribute name='total_size' use='required' type='xsd:int'/> 335 340 <xsd:attribute name='num_packages' use='required' type='xsd:int'/> 341 <xsd:attribute name="vm_version" type="xsd:string" use="optional"/> 336 342 <xsd:attribute name="cpu_seconds" type="xsd:float" use="optional" /> 337 343 <xsd:attribute name="clock_seconds" type="xsd:float" use="optional" /> … … 357 363 <xsd:attribute name='priority_2' use='optional' type='xsd:int'/> 358 364 <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"/> 359 386 </xsd:complexType> 360 387 </xsd:element>
