[Build] Remove testApi(intellijDep()) dependencies from all modules
Since IDEA moved most of it's jars to java 11 it's illegal to use them in our dependencies, so all modules which use `intellijDep()` should carefully specify which jars they use
This commit is contained in:
committed by
TeamCityServer
parent
504ccbad88
commit
e933c7b6d9
@@ -15,14 +15,14 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompileOnly(intellijDep()) {
|
||||
testApi(intellijCoreDep()) { includeJars("intellij-core")}
|
||||
testApi(intellijDep()) {
|
||||
includeJars("extensions", "idea_rt", "util", "asm-all", "jna", rootProject = rootProject)
|
||||
}
|
||||
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api") }
|
||||
|
||||
testRuntimeOnly("xerces:xercesImpl:2.12.0")
|
||||
testRuntimeOnly(intellijDep())
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
|
||||
testApi(commonDep("junit:junit"))
|
||||
|
||||
Reference in New Issue
Block a user