Skip to content

Commit

Permalink
Use junit during gradle test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
InverseIntegral committed May 1, 2023
1 parent 2b9c3c4 commit b53c345
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dependencies {
api("org.janusgraph:janusgraph-core:0.6.2")
api("org.janusgraph:janusgraph-inmemory:0.6.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}

repositories {
Expand All @@ -39,3 +40,6 @@ tasks.withType<Jar> {
exclude("META-INF/*.DSA")
}

tasks.test {
useJUnitPlatform()
}

0 comments on commit b53c345

Please sign in to comment.