Skip to content

Commit

Permalink
fix: Fixed deprecation warning when running tests with Gradle.
Browse files Browse the repository at this point in the history
Updated org.junit:junit-bom from 5.9.1 to 5.9.2.
  • Loading branch information
Livila committed Feb 19, 2024
1 parent dfd8e61 commit 954a9be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ repositories {
}

dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2")
testImplementation(platform("org.junit:junit-bom:5.9.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation ("com.hexadevlabs:gpt4all-java-binding:1.1.5")
implementation("com.hexadevlabs:gpt4all-java-binding:1.1.5")
}

tasks.test {
Expand Down

0 comments on commit 954a9be

Please sign in to comment.