[Fb-contrib-commit] SF.net SVN: fb-contrib:[1784] trunk/fb-contrib
Brought to you by:
dbrosius
From: <dbr...@us...> - 2015-11-25 22:44:58
|
Revision: 1784 http://sourceforge.net/p/fb-contrib/code/1784 Author: dbrosius Date: 2015-11-25 22:44:53 +0000 (Wed, 25 Nov 2015) Log Message: ----------- sync from github Modified Paths: -------------- trunk/fb-contrib/build.xml trunk/fb-contrib/etc/findbugs.xml trunk/fb-contrib/htdocs/index.shtml trunk/fb-contrib/htdocs/repository.html trunk/fb-contrib/pom.xml Modified: trunk/fb-contrib/build.xml =================================================================== --- trunk/fb-contrib/build.xml 2015-11-25 21:51:59 UTC (rev 1783) +++ trunk/fb-contrib/build.xml 2015-11-25 22:44:53 UTC (rev 1784) @@ -20,7 +20,7 @@ <property name="javac.deprecation" value="on" /> <property name="javac.debug" value="on" /> - <property name="fb-contrib.version" value="6.3.0" /> + <property name="fb-contrib.version" value="6.4.0" /> <property name="sonatype.dir" value="${user.home}/.fb-contrib-${fb-contrib.version}-sonatype" /> Modified: trunk/fb-contrib/etc/findbugs.xml =================================================================== --- trunk/fb-contrib/etc/findbugs.xml 2015-11-25 21:51:59 UTC (rev 1783) +++ trunk/fb-contrib/etc/findbugs.xml 2015-11-25 22:44:53 UTC (rev 1784) @@ -20,7 +20,7 @@ <!-- Detectors --> -<!-- COMMENT OUT FOR RELEASE --> +<!-- COMMENT OUT FOR RELEASE <Detector class="com.mebigfatguy.fbcontrib.debug.OCSDebugger" speed="fast"/> @@ -32,7 +32,7 @@ <Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope" speed="fast" reports="BAS_BLOATED_ASSIGNMENT_SCOPE" hidden="true" /> -<!-- COMMENT OUT FOR RELEASE --> + COMMENT OUT FOR RELEASE --> <Detector class="com.mebigfatguy.fbcontrib.collect.CollectStatistics" speed="fast" reports="" hidden="true" /> @@ -282,8 +282,6 @@ <Detector class="com.mebigfatguy.fbcontrib.detect.SuspiciousLoopSearch" speed="fast" reports="SLS_SUSPICIOUS_LOOP_SEARCH" /> <Detector class="com.mebigfatguy.fbcontrib.detect.ConflatingResourcesAndFiles" speed="fast" reports="CRF_CONFLATING_RESOURCES_AND_FILES" /> - - <!-- COMMENT OUT FOR POINT RELEASE --> <Detector class="com.mebigfatguy.fbcontrib.detect.OverlyPermissiveMethod" speed="fast" reports="OPM_OVERLY_PERMISSIVE_METHOD" /> @@ -294,6 +292,7 @@ <Detector class="com.mebigfatguy.fbcontrib.detect.JAXRSIssues" speed="fast" reports="JXI_GET_ENDPOINT_CONSUMES_CONTENT,JXI_INVALID_CONTEXT_PARAMETER_TYPE,JXI_PARM_PARAM_NOT_FOUND_IN_PATH,JXI_UNDEFINED_PARAMETER_SOURCE_IN_ENDPOINT" /> <!-- COMMENT OUT FOR POINT RELEASE --> + <!-- COMMENT OUT FOR POINT RELEASE --> <!-- BugPattern --> @@ -529,9 +528,9 @@ <BugPattern abbrev="CSI" type="CSI_CHAR_SET_ISSUES_USE_STANDARD_CHARSET_NAME" category="CORRECTNESS"/> <BugPattern abbrev="CSI" type="CSI_CHAR_SET_ISSUES_UNKNOWN_ENCODING" category="CORRECTNESS"/> <BugPattern abbrev="CBC" type="CBC_CONTAINS_BASED_CONDITIONAL" category="STYLE"/> - <BugPattern abbrev="OPM" type="OPM_OVERLY_PERMISSIVE_METHOD" category="STYLE" experimental="true" /> - <BugPattern abbrev="STT" type="STT_STRING_PARSING_A_FIELD" category="STYLE" experimental="true" /> - <BugPattern abbrev="STT" type="STT_TOSTRING_STORED_IN_FIELD" category="STYLE" experimental="true" /> + <BugPattern abbrev="OPM" type="OPM_OVERLY_PERMISSIVE_METHOD" category="STYLE" /> + <BugPattern abbrev="STT" type="STT_STRING_PARSING_A_FIELD" category="STYLE" /> + <BugPattern abbrev="STT" type="STT_TOSTRING_STORED_IN_FIELD" category="STYLE" /> <BugPattern abbrev="SLS" type="SLS_SUSPICIOUS_LOOP_SEARCH" category="CORRECTNESS" /> <BugPattern abbrev="CRF" type="CRF_CONFLATING_RESOURCES_AND_FILES" category="CORRECTNESS" /> <BugPattern abbrev="IMC" type="IMC_IMMATURE_CLASS_NO_EQUALS" category="STYLE" /> Modified: trunk/fb-contrib/htdocs/index.shtml =================================================================== --- trunk/fb-contrib/htdocs/index.shtml 2015-11-25 21:51:59 UTC (rev 1783) +++ trunk/fb-contrib/htdocs/index.shtml 2015-11-25 22:44:53 UTC (rev 1784) @@ -68,7 +68,7 @@ </li> </ul> </p> - <p style="font-weight: bold;">The latest version of fb-contrib is 6.2.3 available for download + <p style="font-weight: bold;">The latest version of fb-contrib is 6.4.0 available for download <a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22fb-contrib%22">here</a>.</p> <p style="font-weight: bold;">This version requires FindBugs 3.0.1 or better</p> <p style="font-weight: bold;">Please note that active development for this project is now done on @@ -86,7 +86,14 @@ same kind of exception, and throw the same exception always. These blocks can be coalesced into one. </li> - <li><b>[OPM] Overly Permissive Method</b><br/> + </ul> + </div> + <hr/> + <img id="v6_4_0_image" src="flip2.gif" onClick="toggleBlock('v6_4_0', 'v6_4_0_image');" align="top"/> + Detectors added in v6.4.0<br/> + <div id="v6_4_0" style="display:block;"> + <ul> + <li><b>[OPM] Overly Permissive Method</b><br/> Looks for methods that are declared more permissively than the code is using. For instance, declaring a method public, when it could just be declared private. </li> @@ -98,12 +105,15 @@ Looks for classes that are not fully implemented to be a well rounded class. While the class will likely work fine, it is more difficult to use or understand than necessary. </li> - </ul> - </div> + <li><b>[JXI] JAX-RS Issues</b><br/> + Looks for problems with the use of the JAX-RS specification. + </li> + </ul> + </div> <hr/> <img id="v6_2_0_image" src="flip2.gif" onClick="toggleBlock('v6_2_0', 'v6_2_0_image');" align="top"/> Detectors added in v6.2.0<br/> - <div id="v6_2_0" style="display:block;"> + <div id="v6_2_0" style="display:none;"> <ul> <li><b>[CSI] Charset Issues</b><br/> Looks for issues related to manually specified charsets by using string literals. Modified: trunk/fb-contrib/htdocs/repository.html =================================================================== --- trunk/fb-contrib/htdocs/repository.html 2015-11-25 21:51:59 UTC (rev 1783) +++ trunk/fb-contrib/htdocs/repository.html 2015-11-25 22:44:53 UTC (rev 1784) @@ -22,7 +22,7 @@ <table style="margin-left: 40px; background-color: #A0A0FF; padding: 20px; border-width: 1px; border-style: outset; border-color: #000000;"> <tr><td><b>GroupId:</b></td><td>com.mebigfatguy.fb-contrib</td></tr> <tr><td><b>ArtifactId:</b></td><td>fb-contrib</td></tr> - <tr><td><b>Version:</b></td><td>6.2.3</td></tr> + <tr><td><b>Version:</b></td><td>6.4.0</td></tr> </table> </div> Modified: trunk/fb-contrib/pom.xml =================================================================== --- trunk/fb-contrib/pom.xml 2015-11-25 21:51:59 UTC (rev 1783) +++ trunk/fb-contrib/pom.xml 2015-11-25 22:44:53 UTC (rev 1784) @@ -8,7 +8,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>com.mebigfatguy.fb-contrib</groupId> <artifactId>fb-contrib</artifactId> - <version>6.3.0-SNAPSHOT</version> + <version>6.4.0</version> <prerequisites> <maven>2.2.1</maven> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |