Search Gradle plugins

de.theodm.intellij2checkstyle

Intellij2checkstyle converts inspection reports of the IntelliJ Idea IDE to the useful checkstyle xml format. The project also contains tools to simplify the execution of the IntelliJ Command line inspector.

https://gitlab.com/theodm94/intellij2checkstyle

Sources: https://gitlab.com/theodm94/intellij2checkstyle.git

Version 1.0.0-RC2

1.0.0-RC2

Created 04 September 2018.

Intellij2checkstyle converts inspection reports of the IntelliJ Idea IDE to the useful checkstyle xml format. The project also contains tools to simplify the execution of the IntelliJ Command line inspector.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.theodm:intellij2checkstyle-gradle:1.0.0-RC2")
      }
    }
    
    apply(plugin = "de.theodm.intellij2checkstyle")
  • Applying plugins to all subprojects .