搜索 Gradle 插件

de.theodm.intellij2checkstyle

Intellij2checkstyle 将 IntelliJ Idea IDE 的检查报告转换为有用的 checkstyle xml 格式。该项目还包含简化 IntelliJ 命令行检查器执行的工具。

https://gitlab.com/theodm94/intellij2checkstyle

源代码: https://gitlab.com/theodm94/intellij2checkstyle.git

版本 1.0.0-RC3(最新版)

1.0.0-RC3

创建于 2018年9月7日。

由于该项目仅使用 JCenter 中找到的依赖项,因此此插件版本将在 JCenter 永久重定向到 Maven Central 后不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Intellij2checkstyle 将 IntelliJ Idea IDE 的检查报告转换为有用的 checkstyle xml 格式。该项目还包含简化 IntelliJ 命令行检查器执行的工具。

使用 插件 DSL

plugins {
  id("de.theodm.intellij2checkstyle") version "1.0.0-RC3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.theodm:intellij2checkstyle-gradle:1.0.0-RC3")
  }
}

apply(plugin = "de.theodm.intellij2checkstyle")

使用 插件 DSL

plugins {
  id "de.theodm.intellij2checkstyle" version "1.0.0-RC3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.theodm:intellij2checkstyle-gradle:1.0.0-RC3"
  }
}

apply plugin: "de.theodm.intellij2checkstyle"

了解如何将插件应用于子项目