Fix maven import tests by adding java-ide-customization dependency [KT-32833]

Need java-ide-customization because of JavaAwareModuleTypeManagerImpl
registration. Otherwise there were two instances of JavaModuleType that
were not equal and that prevented facets creating after Maven project
importing.

 #KT-32833 Fixed
This commit is contained in:
Nikolay Krasko
2019-07-22 16:15:20 +03:00
parent 0993fb82fe
commit 72fdb47f13
+2 -2
View File
@@ -1,4 +1,3 @@
plugins {
kotlin("jvm")
id("jps-compatible")
@@ -22,7 +21,8 @@ dependencies {
Platform[192].orHigher {
compileOnly(intellijPluginDep("java"))
testCompileOnly(intellijPluginDep("java"))
testRuntime(intellijPluginDep("java"))
testRuntimeOnly(intellijPluginDep("java"))
testRuntimeOnly(intellijPluginDep("java-ide-customization"))
}
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }