Search Gradle plugins

Version 1.10.0

1.10.0

Created 17 November 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.10.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.intellij.plugins:gradle-intellij-plugin:1.10.0")
      }
    }
    
    apply(plugin = "org.jetbrains.intellij")
  • Applying plugins to all subprojects .