Remove projectDist dependency helper usages

Use default configuration dependencies instead of projectDist ones.
This commit is contained in:
Ilya Gorbunov
2018-08-02 17:22:13 +03:00
parent 03340d770b
commit a18770fbbb
93 changed files with 164 additions and 164 deletions
+5 -5
View File
@@ -33,11 +33,11 @@ dependencies {
testCompile(projectTests(":kotlin-build-common"))
testCompile(projectTests(":generators:test-generator"))
testRuntime(projectDist(":kotlin-stdlib"))
testJsRuntime(projectDist(":kotlin-stdlib-js"))
testJsRuntime(projectDist(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned
testRuntime(projectDist(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) // it's required for ant tests
testRuntime(project(":kotlin-stdlib"))
testJsRuntime(project(":kotlin-stdlib-js"))
testJsRuntime(project(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned
testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-preloader")) // it's required for ant tests
testRuntime(project(":compiler:backend-common"))
testRuntime(commonDep("org.fusesource.jansi", "jansi"))