File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff 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
4545intellij {
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) }
You can’t perform that action at this time.
0 commit comments