Search Gradle plugins

Version 1.7.0

Created 08 July 2022.

The Gradle IntelliJ Plugin is a plugin for the Gradle build system to help configuring your environment for building, testing, verifying, and publishing plugins for IntelliJ-based IDEs. For more information, see [Gradle IntelliJ Plugin documentation](https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html).

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.intellij") version "1.7.0"
}

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("org.jetbrains.intellij:org.jetbrains.intellij.gradle.plugin:1.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jetbrains.intellij")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.intellij:org.jetbrains.intellij.gradle.plugin:1.7.0")
      }
    }
    
    apply(plugin = "org.jetbrains.intellij")
  • Applying plugins to all subprojects .