Search Gradle plugins

org.jetbrains.intellij.platform.settings

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.2.0

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