-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (35 loc) · 1.28 KB
/
build.gradle
File metadata and controls
40 lines (35 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'java'
id "io.freefair.lombok" version "9.2.0"
}
group = 'uk.nhs.adaptors'
sourceCompatibility = '21'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.qpid:qpid-jms-client:2.9.0'
implementation "org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1.1"
implementation 'org.mongodb:mongo-java-driver:3.12.14'
testImplementation(platform('org.junit:junit-bom:6.0.0'))
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.20.0'
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.1'
testImplementation 'commons-io:commons-io:2.21.0'
testImplementation 'org.awaitility:awaitility:4.3.0'
testImplementation "org.assertj:assertj-core:3.27.6"
testImplementation 'ch.qos.logback:logback-classic:1.5.21'
testImplementation 'org.xmlunit:xmlunit-assertj3:2.11.0'
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.5.1'
}
tasks.withType(Test) {
testLogging {
events "passed", "skipped", "failed"
showStandardStreams true
}
}
test {
useJUnitPlatform()
dependsOn "cleanTest" // never re-use previous test outputs
}