201: Fix maven plugin loading by adding repository-search to runtime
This commit is contained in:
@@ -154,6 +154,10 @@ dependencies {
|
|||||||
if (Ide.IJ()) {
|
if (Ide.IJ()) {
|
||||||
testCompileOnly(intellijPluginDep("maven"))
|
testCompileOnly(intellijPluginDep("maven"))
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
testRuntime(intellijPluginDep("junit"))
|
testRuntime(intellijPluginDep("junit"))
|
||||||
|
|||||||
@@ -66,6 +66,10 @@ dependencies {
|
|||||||
|
|
||||||
Ide.IJ {
|
Ide.IJ {
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
testRuntime(intellijPluginDep("testng"))
|
testRuntime(intellijPluginDep("testng"))
|
||||||
|
|||||||
@@ -66,6 +66,10 @@ dependencies {
|
|||||||
testRuntime(intellijPluginDep("coverage"))
|
testRuntime(intellijPluginDep("coverage"))
|
||||||
if (Ide.IJ()) {
|
if (Ide.IJ()) {
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
testRuntime(intellijPluginDep("android"))
|
testRuntime(intellijPluginDep("android"))
|
||||||
testRuntime(intellijPluginDep("smali"))
|
testRuntime(intellijPluginDep("smali"))
|
||||||
|
|||||||
@@ -77,6 +77,10 @@ dependencies {
|
|||||||
testRuntime(intellijPluginDep("coverage"))
|
testRuntime(intellijPluginDep("coverage"))
|
||||||
if (Ide.IJ()) {
|
if (Ide.IJ()) {
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
testRuntime(intellijPluginDep("android"))
|
testRuntime(intellijPluginDep("android"))
|
||||||
testRuntime(intellijPluginDep("smali"))
|
testRuntime(intellijPluginDep("smali"))
|
||||||
|
|||||||
@@ -35,6 +35,10 @@ dependencies {
|
|||||||
if (Ide.IJ()) {
|
if (Ide.IJ()) {
|
||||||
testCompileOnly(intellijPluginDep("maven"))
|
testCompileOnly(intellijPluginDep("maven"))
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
testCompile(project(":idea:idea-native")) { isTransitive = false }
|
testCompile(project(":idea:idea-native")) { isTransitive = false }
|
||||||
|
|||||||
@@ -50,6 +50,10 @@ dependencies {
|
|||||||
testRuntime(intellijPluginDep("coverage"))
|
testRuntime(intellijPluginDep("coverage"))
|
||||||
Ide.IJ {
|
Ide.IJ {
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
testRuntime(intellijPluginDep("android"))
|
testRuntime(intellijPluginDep("android"))
|
||||||
testRuntime(intellijPluginDep("smali"))
|
testRuntime(intellijPluginDep("smali"))
|
||||||
|
|||||||
@@ -57,6 +57,9 @@ dependencies {
|
|||||||
testRuntime(intellijPluginDep("java-decompiler"))
|
testRuntime(intellijPluginDep("java-decompiler"))
|
||||||
Ide.IJ {
|
Ide.IJ {
|
||||||
testRuntime(intellijPluginDep("maven"))
|
testRuntime(intellijPluginDep("maven"))
|
||||||
|
if (Ide.IJ201.orHigher()) {
|
||||||
|
testRuntime(intellijPluginDep("repository-search"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
testRuntime(intellijPluginDep("android"))
|
testRuntime(intellijPluginDep("android"))
|
||||||
testRuntime(intellijPluginDep("smali"))
|
testRuntime(intellijPluginDep("smali"))
|
||||||
|
|||||||
Reference in New Issue
Block a user