org.jetbrains.intellij.platform
                  Owner:
                  
                    
                    JetBrains
                  
                
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.0.0
Created 30 July 2024.
Add this plugin to your build using the plugins DSL:
plugins {
  id("org.jetbrains.intellij.platform") version "2.0.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:org.jetbrains.intellij.platform.gradle.plugin:2.0.0") }It can then be applied in the precompiled script plugin:plugins { id("org.jetbrains.intellij.platform") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.intellij.platform:org.jetbrains.intellij.platform.gradle.plugin:2.0.0") } } apply(plugin = "org.jetbrains.intellij.platform")
- Applying plugins to all subprojects .