-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (35 loc) · 1.26 KB
/
build.gradle
File metadata and controls
43 lines (35 loc) · 1.26 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
41
42
plugins {
id 'java'
id "io.freefair.lombok" version "8.12.2"
}
apply plugin: 'java'
group = 'uk.nhs.adaptors'
sourceCompatibility = '21'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.qpid:qpid-jms-client:2.6.1'
implementation "org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1.1"
implementation 'org.mongodb:mongo-java-driver:3.12.14'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.3'
testImplementation 'commons-io:commons-io:2.18.0'
testImplementation 'org.awaitility:awaitility:4.3.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testImplementation "org.assertj:assertj-core:3.27.3"
testImplementation 'ch.qos.logback:logback-classic:1.5.16'
testImplementation 'org.xmlunit:xmlunit-assertj3:2.10.0'
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.4.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
}
tasks.withType(Test) {
testLogging {
events "passed", "skipped", "failed"
showStandardStreams true
}
}
test {
useJUnitPlatform()
dependsOn "cleanTest" // never re-use previous test outputs
}