Skip to content

Commit

Permalink
#1835 fixed plugin building
Browse files Browse the repository at this point in the history
Only root project is a plugin now, subprojects are just modules, forgot to change this after extraction
  • Loading branch information
hurricup committed Nov 16, 2024
1 parent f1809fb commit c4bfbed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repositories {
val pluginProjectsNames = setOf<String>("julia-intellij")

allprojects {
val isPlugin = project.name in pluginProjectsNames || true // this is for further usage of modularization
val isPlugin = project.name in pluginProjectsNames
apply(plugin = "org.jetbrains.grammarkit")
apply(plugin = if (isPlugin) "org.jetbrains.intellij.platform" else "org.jetbrains.intellij.platform.module")
apply(plugin = "com.github.kt3k.coveralls")
Expand Down

0 comments on commit c4bfbed

Please sign in to comment.