intellij-platform-gradle-plugin icon indicating copy to clipboard operation
intellij-platform-gradle-plugin copied to clipboard

Gradle plugin for building plugins for IntelliJ-based IDEs

Results 269 intellij-platform-gradle-plugin issues
Sort by recently updated
recently updated
newest added

There's a use-case to package a standalone IDE based on top of JetBrains Platform. For instance, it could be an MPS-based IDE with plugins. The case not really the same...

![image](https://user-images.githubusercontent.com/1386607/71990525-6fdda280-322b-11ea-9bd3-0d03786d4a40.png) I created two gradle projects with the intellij wizard, one with Intellij Platform Plugin selected and one without. Then I add coroutines to the dependencies in the build.gradle: ```...

I have an IntelliJ plugin which depends on other company internal plugins. The dependencies are configured in the plugin.xml as follows: ``` ... com.intellij.modules.java CustomPlugin1 CustomPlugin2 ... ``` The two...

enhancement
depends on Plugin Verifier

Currently the Util.getBuiltinJbrVersion method returns the jdkBuild version from the dependencies.txt file. Given that some plugin build may wish to use Java 8 instead of Java 11 or vice versa,...

## Description It would be so awesome if I could add plugins without having to specify their version also. e.g. ``` setPlugins('com.jetbrains.php') ``` ### Issue So I basically only develop...

I am currently confused as to how to effectively use an EAP channel for my plugin https://intellij-support.jetbrains.com/hc/en-us/community/posts/360009478380-How-Do-I-Publish-To-An-EAP-Channel- The [docs](https://jetbrains.org/intellij/sdk/docs/tutorials/build_system/deployment.html#specifying-a-release-channel) suggest some popular names but they also imply that you can...

feedback required

Currently, the gradle-intellij-plugin allows customizing the URL from which the IDEA package is downloaded. However, the plugin makes hardcoded assumptions about the group name, artifact name and packaging (e.g. com/jetbrains/intellij/idea/ideaIC/2016.2.3/ideaIC-2016.2.3.zip)....

enhancement
help wanted

My plugin must work with many different versions of IJ; configured via `sinceBuild`. Yet the tests only run on the version of IJ my plugin compiles against. I'd like to...

enhancement

It would be very useful if there was a way to configure an IntelliJ versions for the `runIde` task that is different from `intellij { version = ... }`. For...

enhancement

Hi We have a 2 modules in our plugins. Project A is the plugin and it depends on another project B. When we do some changes do module B and...