Last active
December 30, 2024 00:42
-
-
Save sandipchitale/f19a3dc9419cfd0d45be8b04387e0b41 to your computer and use it in GitHub Desktop.
Configure runIde task of JetBrains plugin gradle build to use locally installed IDE #jetbrains-plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file should be in ~/.gradle/gradle.properties | |
# | |
# In build.gradle.kt | |
# tasks { | |
# ... | |
# runIde { | |
# if (project.hasProperty("runIde_ideDir")) { | |
# ideDir = file("${project.extra["runIde_ideDir"]}") | |
# } | |
# } | |
# | |
runIde_ideDir=/home/sandipchitale/.local/share/JetBrains/Toolbox/apps/intellij-idea-ultimate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment