201: Fix maven plugin loading by adding repository-search to runtime

This commit is contained in:
Nikolay Krasko
2020-02-20 20:56:10 +03:00
parent 0fcd011abb
commit 958b8a0b10
7 changed files with 27 additions and 0 deletions
+4
View File
@@ -154,6 +154,10 @@ dependencies {
if (Ide.IJ()) {
testCompileOnly(intellijPluginDep("maven"))
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("junit"))
+4
View File
@@ -66,6 +66,10 @@ dependencies {
Ide.IJ {
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("testng"))
+4
View File
@@ -66,6 +66,10 @@ dependencies {
testRuntime(intellijPluginDep("coverage"))
if (Ide.IJ()) {
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
+4
View File
@@ -77,6 +77,10 @@ dependencies {
testRuntime(intellijPluginDep("coverage"))
if (Ide.IJ()) {
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
+4
View File
@@ -35,6 +35,10 @@ dependencies {
if (Ide.IJ()) {
testCompileOnly(intellijPluginDep("maven"))
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testCompile(project(":idea:idea-native")) { isTransitive = false }
+4
View File
@@ -50,6 +50,10 @@ dependencies {
testRuntime(intellijPluginDep("coverage"))
Ide.IJ {
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))
@@ -57,6 +57,9 @@ dependencies {
testRuntime(intellijPluginDep("java-decompiler"))
Ide.IJ {
testRuntime(intellijPluginDep("maven"))
if (Ide.IJ201.orHigher()) {
testRuntime(intellijPluginDep("repository-search"))
}
}
testRuntime(intellijPluginDep("android"))
testRuntime(intellijPluginDep("smali"))