Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ dependencies {
// ==== /Lombok


testImplementation platform('org.junit:junit-bom:5.14.0')
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.junit.platform:junit-platform-launcher'

androidTestImplementation 'io.github.neboskreb:android-log4j2-junit5:2.24'
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
androidTestImplementation platform('org.junit:junit-bom:5.14.0')
androidTestImplementation platform('org.junit:junit-bom:6.0.0')
androidTestImplementation "org.junit.jupiter:junit-jupiter-api"
androidTestImplementation 'org.junit.jupiter:junit-jupiter'
androidTestImplementation 'org.junit.platform:junit-platform-launcher'
Expand Down
4 changes: 2 additions & 2 deletions examples/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {


testImplementation 'io.github.neboskreb:android-log4j2:2.24'
testImplementation platform('org.junit:junit-bom:5.14.0')
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand All @@ -53,7 +53,7 @@ dependencies {
androidTestImplementation 'androidx.test:core:1.7.0'
androidTestImplementation 'androidx.test:runner:1.7.0'
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
androidTestImplementation platform('org.junit:junit-bom:5.14.0')
androidTestImplementation platform('org.junit:junit-bom:6.0.0')
androidTestImplementation 'org.junit.jupiter:junit-jupiter-api'
androidTestImplementation 'org.junit.jupiter:junit-jupiter'
androidTestImplementation 'org.junit.platform:junit-platform-launcher'
Expand Down
4 changes: 2 additions & 2 deletions junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ android {
dependencies {
api 'io.github.neboskreb:android-log4j2:2.24'
compileOnly 'androidx.test.ext:junit:1.3.0'
compileOnly platform('org.junit:junit-bom:5.14.0')
compileOnly platform('org.junit:junit-bom:6.0.0')
compileOnly 'org.junit.jupiter:junit-jupiter-api'
compileOnly 'org.junit.jupiter:junit-jupiter'
compileOnly 'org.junit.platform:junit-platform-launcher'

androidTestImplementation 'androidx.test.ext:junit:1.3.0'
androidTestImplementation platform('org.junit:junit-bom:5.14.0')
androidTestImplementation platform('org.junit:junit-bom:6.0.0')
androidTestImplementation 'org.junit.jupiter:junit-jupiter-api'
androidTestImplementation 'org.junit.jupiter:junit-jupiter'
androidTestImplementation 'org.junit.platform:junit-platform-launcher'
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ dependencies {
// ==== /Lombok


testImplementation platform('org.junit:junit-bom:5.14.0')
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand All @@ -139,7 +139,7 @@ dependencies {


androidTestImplementation 'androidx.test.ext:junit:1.3.0'
androidTestImplementation platform('org.junit:junit-bom:5.14.0')
androidTestImplementation platform('org.junit:junit-bom:6.0.0')
androidTestImplementation 'org.junit.jupiter:junit-jupiter-api'
androidTestImplementation 'org.junit.jupiter:junit-jupiter'
androidTestImplementation 'org.junit.platform:junit-platform-launcher'
Expand Down