Search Gradle plugins

Version 3.3 (latest)

3.3

Created 29 August 2024.

Copy-paste detection based on the CPD tool

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.myire.quill.cpd") version "3.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.myire:quill:3.3")
      }
    }
    
    apply(plugin = "org.myire.quill.cpd")
  • Applying plugins to all subprojects .