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:
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
id("jps-compatible")
|
id("jps-compatible")
|
||||||
@@ -22,7 +21,8 @@ dependencies {
|
|||||||
Platform[192].orHigher {
|
Platform[192].orHigher {
|
||||||
compileOnly(intellijPluginDep("java"))
|
compileOnly(intellijPluginDep("java"))
|
||||||
testCompileOnly(intellijPluginDep("java"))
|
testCompileOnly(intellijPluginDep("java"))
|
||||||
testRuntime(intellijPluginDep("java"))
|
testRuntimeOnly(intellijPluginDep("java"))
|
||||||
|
testRuntimeOnly(intellijPluginDep("java-ide-customization"))
|
||||||
}
|
}
|
||||||
|
|
||||||
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
||||||
|
|||||||
Reference in New Issue
Block a user