mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Move JUnit dependency definition to bisq.java-conventions
This commit is contained in:
parent
b90776989b
commit
6e0e5028a3
@ -16,5 +16,4 @@ dependencies {
|
||||
implementation libs.apache.commons.lang3
|
||||
implementation libs.slf4j.api
|
||||
testImplementation libs.hamcrest
|
||||
testImplementation libs.junit.jupiter.api
|
||||
}
|
||||
|
@ -18,3 +18,8 @@ repositories {
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation libs.junit.jupiter.api
|
||||
testImplementation libs.junit.jupiter.params
|
||||
}
|
||||
|
@ -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')
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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 {
|
||||
@ -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 {
|
||||
@ -397,7 +392,6 @@ configure(project(':seednode')) {
|
||||
exclude(module: 'guava')
|
||||
}
|
||||
testImplementation libs.mockito
|
||||
testImplementation libs.junit.jupiter.api
|
||||
}
|
||||
}
|
||||
|
||||
@ -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)
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user