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

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:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("de.theodm.intellij2checkstyle:de.theodm.intellij2checkstyle.gradle.plugin:1.0.0-RC2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.theodm.intellij2checkstyle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.theodm.intellij2checkstyle:de.theodm.intellij2checkstyle.gradle.plugin:1.0.0-RC2")
      }
    }
    
    apply(plugin = "de.theodm.intellij2checkstyle")
  • Applying plugins to all subprojects .