Skip to content

Commit

Permalink
fix: Fixed IntelliJ testing to work again.
Browse files Browse the repository at this point in the history
The testing in IntelliJ stopped working after the commit 954a9be, which added `testRuntimeOnly(org.junit.platform:junit-platform-launcher:1.10.2)`.

It should have been version 1.9.2, which is compatible with the versions we are using. It still worked in Gradle Wrapper however.
  • Loading branch information
Livila committed Feb 20, 2024
1 parent 6128485 commit 0de532a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ repositories {
}

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

Expand Down

0 comments on commit 0de532a

Please sign in to comment.