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

Move JUnit dependency definition to bisq.java-conventions #6686

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion assets/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ dependencies {
implementation libs.apache.commons.lang3
implementation libs.slf4j.api
testImplementation libs.hamcrest
testImplementation libs.junit.jupiter.api
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ repositories {
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}

dependencies {
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
}
8 changes: 0 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ configure(project(':common')) {
implementation libs.jetbrains.annotations
implementation libs.slf4j.api
testImplementation libs.hamcrest
testImplementation libs.junit.jupiter.api
runtimeOnly(libs.grpc.netty.shaded) {
exclude(module: 'animal-sniffer-annotations')
exclude(module: 'guava')
Expand Down Expand Up @@ -213,8 +212,6 @@ configure(project(':p2p')) {
testImplementation libs.logback.core
testImplementation libs.apache.commons.lang3
testImplementation libs.mockito
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
}
}

Expand Down Expand Up @@ -284,7 +281,6 @@ configure(project(':core')) {
testImplementation libs.natpryce.make.it.easy
testImplementation libs.hamcrest
testImplementation libs.mockito
testImplementation libs.junit.jupiter.api
}

test {
Expand Down Expand Up @@ -362,7 +358,6 @@ configure(project(':desktop')) {
testImplementation libs.natpryce.make.it.easy
testImplementation libs.mockito
testImplementation libs.hamcrest
testImplementation libs.junit.jupiter.api
}

test {
Expand Down Expand Up @@ -397,7 +392,6 @@ configure(project(':seednode')) {
exclude(module: 'guava')
}
testImplementation libs.mockito
testImplementation libs.junit.jupiter.api
}
}

Expand Down Expand Up @@ -516,8 +510,6 @@ configure(project(':apitest')) {
}
testAnnotationProcessor libs.lombok
testCompileOnly libs.lombok
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
testRuntimeOnly libs.javax.annotation
testRuntimeOnly(libs.junit.jupiter.engine)
}
Expand Down
2 changes: 0 additions & 2 deletions cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ dependencies {
testCompileOnly libs.lombok
testImplementation libs.cowwoc.diff.match.patch

testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
testRuntimeOnly libs.javax.annotation
testRuntimeOnly libs.junit.jupiter.engine
}
Expand Down
2 changes: 0 additions & 2 deletions daemon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,5 @@ dependencies {
}
testAnnotationProcessor libs.lombok
testCompileOnly libs.lombok
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
testRuntimeOnly(libs.junit.jupiter.engine)
}