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.

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.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "de.theodm.intellij2checkstyle"

Learn how to apply plugins to subprojects