Search Gradle plugins

Version 3.3 (latest)

3.3

Created 29 August 2024.

Copy-paste detection based on the CPD tool

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.myire:quill:3.3")
  }
}

apply(plugin = "org.myire.quill.cpd")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.myire:quill:3.3"
  }
}

apply plugin: "org.myire.quill.cpd"

Learn how to apply plugins to subprojects