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)

1.0.0-RC3

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.

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