mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Merge pull request #6686 from alvasw/move_junit_definition_to_bisq_java_conventions
Move JUnit dependency definition to bisq.java-conventions
This commit is contained in:
commit
6f851b944c
@ -16,5 +16,4 @@ dependencies {
|
|||||||
implementation libs.apache.commons.lang3
|
implementation libs.apache.commons.lang3
|
||||||
implementation libs.slf4j.api
|
implementation libs.slf4j.api
|
||||||
testImplementation libs.hamcrest
|
testImplementation libs.hamcrest
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
}
|
}
|
||||||
|
@ -18,3 +18,8 @@ repositories {
|
|||||||
tasks.withType(JavaCompile) {
|
tasks.withType(JavaCompile) {
|
||||||
options.encoding = 'UTF-8'
|
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.jetbrains.annotations
|
||||||
implementation libs.slf4j.api
|
implementation libs.slf4j.api
|
||||||
testImplementation libs.hamcrest
|
testImplementation libs.hamcrest
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
runtimeOnly(libs.grpc.netty.shaded) {
|
runtimeOnly(libs.grpc.netty.shaded) {
|
||||||
exclude(module: 'animal-sniffer-annotations')
|
exclude(module: 'animal-sniffer-annotations')
|
||||||
exclude(module: 'guava')
|
exclude(module: 'guava')
|
||||||
@ -213,8 +212,6 @@ configure(project(':p2p')) {
|
|||||||
testImplementation libs.logback.core
|
testImplementation libs.logback.core
|
||||||
testImplementation libs.apache.commons.lang3
|
testImplementation libs.apache.commons.lang3
|
||||||
testImplementation libs.mockito
|
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.natpryce.make.it.easy
|
||||||
testImplementation libs.hamcrest
|
testImplementation libs.hamcrest
|
||||||
testImplementation libs.mockito
|
testImplementation libs.mockito
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
}
|
}
|
||||||
|
|
||||||
test {
|
test {
|
||||||
@ -362,7 +358,6 @@ configure(project(':desktop')) {
|
|||||||
testImplementation libs.natpryce.make.it.easy
|
testImplementation libs.natpryce.make.it.easy
|
||||||
testImplementation libs.mockito
|
testImplementation libs.mockito
|
||||||
testImplementation libs.hamcrest
|
testImplementation libs.hamcrest
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
}
|
}
|
||||||
|
|
||||||
test {
|
test {
|
||||||
@ -397,7 +392,6 @@ configure(project(':seednode')) {
|
|||||||
exclude(module: 'guava')
|
exclude(module: 'guava')
|
||||||
}
|
}
|
||||||
testImplementation libs.mockito
|
testImplementation libs.mockito
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -516,8 +510,6 @@ configure(project(':apitest')) {
|
|||||||
}
|
}
|
||||||
testAnnotationProcessor libs.lombok
|
testAnnotationProcessor libs.lombok
|
||||||
testCompileOnly libs.lombok
|
testCompileOnly libs.lombok
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
testImplementation libs.junit.jupiter.params
|
|
||||||
testRuntimeOnly libs.javax.annotation
|
testRuntimeOnly libs.javax.annotation
|
||||||
testRuntimeOnly(libs.junit.jupiter.engine)
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
||||||
}
|
}
|
||||||
|
@ -32,8 +32,6 @@ dependencies {
|
|||||||
testCompileOnly libs.lombok
|
testCompileOnly libs.lombok
|
||||||
testImplementation libs.cowwoc.diff.match.patch
|
testImplementation libs.cowwoc.diff.match.patch
|
||||||
|
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
testImplementation libs.junit.jupiter.params
|
|
||||||
testRuntimeOnly libs.javax.annotation
|
testRuntimeOnly libs.javax.annotation
|
||||||
testRuntimeOnly libs.junit.jupiter.engine
|
testRuntimeOnly libs.junit.jupiter.engine
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,5 @@ dependencies {
|
|||||||
}
|
}
|
||||||
testAnnotationProcessor libs.lombok
|
testAnnotationProcessor libs.lombok
|
||||||
testCompileOnly libs.lombok
|
testCompileOnly libs.lombok
|
||||||
testImplementation libs.junit.jupiter.api
|
|
||||||
testImplementation libs.junit.jupiter.params
|
|
||||||
testRuntimeOnly(libs.junit.jupiter.engine)
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user