Skip to content

Commit

Permalink
Fix Kotlin plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorkaKulikov committed Jul 18, 2023
1 parent 697565b commit c6d23dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion utbot-intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ intellij {
"java"
)

val kotlinPlugins = mutableListOf(
"org.jetbrains.kotlin"
)

androidStudioPath?.let { jvmPlugins += androidPlugins }

val pythonCommunityPlugins = listOf(
Expand Down Expand Up @@ -74,7 +78,7 @@ intellij {
else -> jvmPlugins
}
}
springProjectTypeName -> jvmPlugins
springProjectTypeName -> jvmPlugins + kotlinPlugins + mavenUtilsPlugins
else -> jvmPlugins
}
)
Expand Down

0 comments on commit c6d23dd

Please sign in to comment.