Skip to content

Commit

Permalink
🚨 fix some 'code smells': fix libs dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Lum committed Mar 24, 2024
1 parent a45c763 commit 6e9d22d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
dependencies {
// Use JUnit Jupiter for testing.
testImplementation(libs.junit.jupiter)
testImplementation("org.assertj:assertj-core:3.25.3")
testImplementation(libs.assertj.core)

testRuntimeOnly("org.junit.platform:junit-platform-launcher")

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.sonar.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {
dependencies {
// Use JUnit Jupiter for testing.
testImplementation(libs.junit.jupiter)
testImplementation("org.assertj:assertj-core:3.25.3")
testImplementation(libs.assertj.core)

testRuntimeOnly("org.junit.platform:junit-platform-launcher")

Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
[versions]
# guava = "32.1.3-jre"
junit-jupiter = "5.10.0"
assertj = "3.25.3"

[libraries]
# guava = { module = "com.google.guava:guava", version.ref = "guava" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }

0 comments on commit 6e9d22d

Please sign in to comment.