Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ allprojects {
annotationProcessor("org.projectlombok", "lombok", "1.18.38")

// Unit Testing
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.13.4") // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation("org.junit.jupiter", "junit-jupiter", "5.13.4") // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.13.4")
testImplementation("org.junit.jupiter", "junit-jupiter-api", "6.0.1") // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation("org.junit.jupiter", "junit-jupiter", "6.0.1") // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:6.0.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

// Mockito
Expand Down
Loading