Search Gradle plugins

org.jetbrains.intellij.platform

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

https://github.com/JetBrains/intellij-platform-gradle-plugin

Sources: https://github.com/JetBrains/intellij-platform-gradle-plugin

Version 2.1.0 (latest)

2.1.0

Created 25 September 2024.

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

Add this plugin to your build using the plugins DSL:

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

See also:

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