Skip to content

Commit

Permalink
Update kotlin-test dependency in all subprojects
Browse files Browse the repository at this point in the history
  • Loading branch information
matejsemancik committed Aug 21, 2024
1 parent 6c3bbf5 commit 7b5fede
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 15 deletions.
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ essenty = { group = "com.arkivanov.essenty", name = "lifecycle", version.ref = "

# Testing
kotlin-test = { group = "org.jetbrains.kotlin", name = "kotlin-test", version.ref = "kotlin" }
kotlin-testCommon = { group = "org.jetbrains.kotlin", name = "kotlin-test-common", version.ref = "kotlin" }
kotlin-testAnnotationsCommon = { group = "org.jetbrains.kotlin", name = "kotlin-test-annotations-common", version.ref = "kotlin" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "uiautomator" }
Expand Down
3 changes: 1 addition & 2 deletions shared/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}

Expand Down
3 changes: 1 addition & 2 deletions shared/feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions shared/network/graphql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions shared/network/rest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions shared/persistence/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions shared/platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ kotlin {

commonTest {
dependencies {
implementation(libs.kotlin.testCommon)
implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlin.test)
}
}
}
Expand Down
1 change: 0 additions & 1 deletion shared/util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ kotlin {
commonTest {
dependencies {
implementation(libs.kotlin.test)
// implementation(libs.kotlin.testAnnotationsCommon)
implementation(libs.kotlinx.coroutines.test)
}
}
Expand Down

0 comments on commit 7b5fede

Please sign in to comment.