MVN

org.codehaus.sonar-plugins : sonar-cutoff-plugin

Maven & Gradle

Oct 19, 2012

Sonar Cutoff Plugin · Exclude files from analysis based on a cutoff date threshold. Any source file that was last modified prior to the configured cutoff date is excluded. This can be useful when you want to analyze the work done on an existing code base and measure the quality of new code/changes only. This way previous phases of the project will not impact the analysis.

<dependency>
    <groupId>org.codehaus.sonar-plugins</groupId>
    <artifactId>sonar-cutoff-plugin</artifactId>
    <version>0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.codehaus.sonar-plugins : sonar-cutoff-plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2

All Versions

Choose a version of org.codehaus.sonar-plugins : sonar-cutoff-plugin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2
sonar-cutoff-plugin-0.2
0.1.x
sonar-cutoff-plugin-0.1.1
0.1
sonar-cutoff-plugin-0.1

How to add a dependency to Maven

Add the following org.codehaus.sonar-plugins : sonar-cutoff-plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.codehaus.sonar-plugins</groupId>
    <artifactId>sonar-cutoff-plugin</artifactId>
    <version>0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.codehaus.sonar-plugins : sonar-cutoff-plugin gradle dependency to your build.gradle file:

implementation 'org.codehaus.sonar-plugins:sonar-cutoff-plugin:0.2'

Gradle Kotlin DSL: Add the following org.codehaus.sonar-plugins : sonar-cutoff-plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("org.codehaus.sonar-plugins:sonar-cutoff-plugin:0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.codehaus.sonar-plugins : sonar-cutoff-plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "org.codehaus.sonar-plugins" % "sonar-cutoff-plugin" % "0.2"