Skip to content

Commit 221a3fc

Browse files
committed
build: Build with pre-defined IDE
1 parent f1b5823 commit 221a3fc

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,13 @@ kotlin {
4444
// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
4545
intellij {
4646
pluginName = properties("pluginName")
47-
// version = properties("platformVersion")
48-
// type = properties("platformType")
49-
localPath.set("D:\\JetBrains\\IntelliJ IDEA Community Edition")
47+
48+
// Build with pre-defined IDE
49+
version = properties("platformVersion")
50+
type = properties("platformType")
51+
52+
// If u want to build it with your already installed IDE
53+
// localPath.set("D:\\JetBrains\\IntelliJ IDEA Community Edition")
5054

5155
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
5256
plugins = properties("platformPlugins").map { it.split(',').map(String::trim).filter(String::isNotEmpty) }

0 commit comments

Comments
 (0)