Build: remove intellijCore/annotations.jar usages

This commit is contained in:
Sergey Rostov
2019-01-23 14:45:25 +03:00
parent c716ef112e
commit 0f2fb4ff82
33 changed files with 50 additions and 32 deletions
@@ -17,7 +17,6 @@ dependencies {
compile(project(":kotlin-build-common"))
compile(project(":compiler:daemon-common"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("annotations") }
testCompile(commonDep("junit:junit"))
testCompile(project(":kotlin-test:kotlin-test-junit"))
@@ -26,7 +25,7 @@ dependencies {
testCompile(projectTests(":kotlin-build-common"))
testCompile(projectTests(":compiler:tests-common"))
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(intellijDep()) { includeJars("annotations", "log4j", "jdom") }
testCompile(intellijDep()) { includeJars("log4j", "jdom") }
}
sourceSets {