Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump mockito to 4.3.1 and switch to the bom #533

Merged
merged 1 commit into from Feb 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions build.gradle.kts
Expand Up @@ -138,8 +138,7 @@ subprojects {
testImplementation(platform("org.junit:junit-bom:5.8.2"))
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter")
// - Mocking
testImplementation(group = "org.mockito", name = "mockito-core", version = "4.2.0")
testImplementation(group = "org.mockito", name = "mockito-junit-jupiter", version = "4.2.0")
testImplementation(platform("org.mockito:mockito-bom:4.3.1"))
// - Await
testImplementation(group = "org.awaitility", name = "awaitility", version = "4.1.1")
// - Logging
Expand Down
4 changes: 4 additions & 0 deletions chat/build.gradle.kts
Expand Up @@ -12,6 +12,10 @@ dependencies {
// Twitch4J Modules
api(project(":twitch4j-common"))
api(project(":twitch4j-auth"))

// Mocking
testImplementation(group = "org.mockito", name = "mockito-core")
testImplementation(group = "org.mockito", name = "mockito-junit-jupiter")
}

tasks.javadoc {
Expand Down