Build: Rename commonDep -> commonDependency

This commit is contained in:
Vyacheslav Gerasimov
2021-12-09 01:40:15 +03:00
committed by teamcity
parent 156ecce961
commit bc2f0936bd
90 changed files with 149 additions and 150 deletions
@@ -35,7 +35,7 @@ dependencies {
implementation(project(":compiler:util"))
implementation(project(":compiler:ir.serialization.common"))
testImplementation DependenciesKt.commonDep(project, "junit")
testImplementation DependenciesKt.commonDependency(project, "junit")
testImplementation project(":kotlin-test:kotlin-test-junit")
}
@@ -6082,7 +6082,7 @@ dependencies {
api project(kotlinCompilerModule)
api project(path: ':kotlin-native:backend.native', configuration: 'cli_bcApiElements')
api DependenciesKt.commonDep(project, "junit")
api DependenciesKt.commonDependency(project, "junit")
}
project.tasks.named("test").configure {
+1 -1
View File
@@ -44,7 +44,7 @@ dependencies {
implementation project(":kotlin-stdlib")
implementation project(path: ':kotlin-native:backend.native', configuration: 'cli_bcApiElements')
implementation project(":kotlin-native:utilities:basic-utils")
testImplementation DependenciesKt.commonDep(project, "junit")
testImplementation DependenciesKt.commonDependency(project, "junit")
testImplementation project(":kotlin-test:kotlin-test-junit")
}
@@ -52,7 +52,7 @@ dependencies {
kotlinNativeEmbedded(project(":kotlin-native:klib"))
kotlinNativeEmbedded(project(":kotlin-native:endorsedLibraries:kotlinx.cli", "jvmRuntimeElements"))
kotlinNativeEmbedded(project(":kotlin-compiler")) { isTransitive = false }
testImplementation(commonDep("junit:junit"))
testImplementation(commonDependency("junit:junit"))
testImplementation(project(":kotlin-test:kotlin-test-junit"))
}
@@ -78,7 +78,7 @@ dependencies {
bundleDependencies "org.jetbrains.kotlin:kotlin-util-io:$kotlinVersion"
bundleDependencies "org.jetbrains.kotlin:kotlin-util-klib:$kotlinVersion"
testImplementation DependenciesKt.commonDep(project, "junit")
testImplementation DependenciesKt.commonDependency(project, "junit")
testImplementation "org.jetbrains.kotlin:kotlin-test:${project.bootstrapKotlinVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${project.bootstrapKotlinVersion}"
testImplementation "org.tools4j:tools4j-spockito:1.6"