You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2016/12/30 20:19:25 UTC

svn commit: r1776632 - /jmeter/trunk/build.xml

Author: pmouawad
Date: Fri Dec 30 20:19:25 2016
New Revision: 1776632

URL: http://svn.apache.org/viewvc?rev=1776632&view=rev
Log:
Sonar : Ignore inheritance code smell as nothing can be done about it without breaking backward compatibility

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1776632&r1=1776631&r2=1776632&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Fri Dec 30 20:19:25 2016
@@ -3388,7 +3388,10 @@ run JMeter unless all the JMeter jars ar
          value="squid:S00112" />
   <property name="sonar.issue.ignore.multicriteria.c2.resourceKey"
          value="**/*.java" />
-
+  <property name="sonar.issue.ignore.multicriteria.c3.ruleKey"
+	     value="squid:MaximumInheritanceDepth" />
+  <property name="sonar.issue.ignore.multicriteria.c3.resourceKey"
+	     value="**/*.java" />
   <property name="core.sonar.projectName" value="core" />
   <property name="core.sonar.sources" value="${src.core}" />
   <property name="core.sonar.projectBaseDir" value="./" />