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-RC3 (latest)

Created 07 September 2018.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact 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-RC3"
}

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-RC3")
    }
    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-RC3")
      }
    }
    
    apply(plugin = "de.theodm.intellij2checkstyle")
  • Applying plugins to all subprojects .