Skip to content

Commit 4b5543d

Browse files
Follow-up: fix typo in JUnit version variable.
From 83bcc27 KTS: convert root build script.
1 parent 12db9e4 commit 4b5543d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ buildscript {
3636
val obxJniLibVersion by extra("io.objectbox:objectbox-$objectboxPlatform:$nativeVersion")
3737

3838
val essentialsVersion by extra("3.1.0")
39-
val juniVersion by extra("4.13.2")
39+
val junitVersion by extra("4.13.2")
4040
val mockitoVersion by extra("3.8.0")
4141
val kotlinVersion by extra("1.7.20")
4242
val coroutinesVersion by extra("1.6.4")

objectbox-rxjava/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
api project(':objectbox-java')
1414
api 'io.reactivex.rxjava2:rxjava:2.2.21'
1515

16-
testImplementation "junit:junit:$juniVersion"
16+
testImplementation "junit:junit:$junitVersion"
1717
testImplementation "org.mockito:mockito-core:$mockitoVersion"
1818
}
1919

objectbox-rxjava3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies {
4545
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
4646

4747
testImplementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
48-
testImplementation "junit:junit:$juniVersion"
48+
testImplementation "junit:junit:$junitVersion"
4949
testImplementation "org.mockito:mockito-core:$mockitoVersion"
5050
}
5151

tests/objectbox-java-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151
println "Did NOT add native dependency"
5252
}
5353

54-
testImplementation "junit:junit:$juniVersion"
54+
testImplementation "junit:junit:$junitVersion"
5555
// To test Coroutines
5656
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")
5757
// To test Kotlin Flow

tests/test-proguard/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ dependencies {
3838
println "Did NOT add native dependency"
3939
}
4040

41-
testImplementation "junit:junit:$juniVersion"
41+
testImplementation "junit:junit:$junitVersion"
4242
}

0 commit comments

Comments
 (0)