Skip to content

Commit

Permalink
libs.truth.extension
Browse files Browse the repository at this point in the history
  • Loading branch information
qcdyx committed Feb 17, 2025
1 parent 9106746 commit cc650bc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
implementation libs.flogger.system.backend
testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
testImplementation libs.mockito.core
}

Expand Down
2 changes: 1 addition & 1 deletion cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {

testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
testImplementation libs.mockito.core
}

2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
testImplementation libs.flogger.system.backend
testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
testImplementation libs.mockito.core
}

Expand Down
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ commonsCompress = "1.20"
mockito = "4.5.1"
junit = "4.13"
truth = "1.1.3"
truthExtension = "1.0.1"

[plugins]
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }
Expand All @@ -32,4 +33,5 @@ univocity-parsers = { module = "com.univocity:univocity-parsers", version.ref =
commons-compress = { module = "org.apache.commons:commons-compress", version.ref = "commonsCompress" }
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" }
junit = { module = "junit:junit", version.ref = "junit" }
truth = { module = "com.google.truth:truth", version.ref = "truth" }
truth = { module = "com.google.truth:truth", version.ref = "truth" }
truth-extension = { module = "com.google.truth.extensions:truth-java8-extension", version.ref = "truthExtension" }
2 changes: 1 addition & 1 deletion main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ dependencies {
implementation 'org.locationtech.jts:jts-core:1.20.0'
testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
testImplementation libs.mockito.core
}
2 changes: 1 addition & 1 deletion processor/notices/tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
implementation libs.gson
testImplementation libs.junit
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
}

test {
Expand Down
2 changes: 1 addition & 1 deletion processor/tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ dependencies {
implementation libs.univocity.parsers
testImplementation libs.junit
testImplementation libs.truth
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.0.1'
testImplementation libs.truth.extension
}

0 comments on commit cc650bc

Please sign in to comment.