Fix compatibility with 202 IDEA branch (dependencies)

This commit is contained in:
Yan Zhulanow
2020-04-09 18:33:03 +09:00
parent a9d0c16fef
commit f489ac1d03
+11
View File
@@ -27,6 +27,12 @@ dependencies {
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
excludeInAndroidStudio(rootProject) {
Platform[202].orHigher {
compileOnly(intellijPluginDep("maven-model"))
}
}
testCompile(projectTests(":idea"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea:idea-test-framework"))
@@ -36,6 +42,11 @@ dependencies {
testCompileOnly(intellijPluginDep("maven"))
testRuntime(intellijPluginDep("maven"))
Platform[202].orHigher {
testCompileOnly(intellijPluginDep("maven-model"))
testRuntime(intellijPluginDep("maven-model"))
}
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}