搜索 Gradle 插件

de.aaschmid.cpd

所有者: Andreas Schmid

一个用于使用 PMDs 复制/粘贴检测(= CPD)查找重复代码的 Gradle 插件。

https://github.com/aaschmid/gradle-cpd-plugin

版本 3.4(最新版)

3.4

创建于 2024 年 6 月 3 日。

一个用于使用 PMDs 复制/粘贴检测(= CPD)查找重复代码的 Gradle 插件。

使用 插件 DSL

plugins {
  id("de.aaschmid.cpd") version "3.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.aaschmid:gradle-cpd-plugin:3.4")
  }
}

apply(plugin = "de.aaschmid.cpd")

使用 插件 DSL

plugins {
  id "de.aaschmid.cpd" version "3.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.aaschmid:gradle-cpd-plugin:3.4"
  }
}

apply plugin: "de.aaschmid.cpd"

学习如何将插件应用于子项目