Skip to content

Commit

Permalink
Merge pull request #6686 from alvasw/move_junit_definition_to_bisq_ja…
Browse files Browse the repository at this point in the history
…va_conventions

Move JUnit dependency definition to bisq.java-conventions
  • Loading branch information
alejandrogarcia83 authored May 8, 2023
2 parents fcec096 + 6e0e502 commit 6f851b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 13 deletions.
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)
}

0 comments on commit 6f851b9

Please sign in to comment.