-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (30 loc) · 1.07 KB
/
build.gradle.kts
File metadata and controls
35 lines (30 loc) · 1.07 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
description = "Allure Spring Web Integration"
val springWebVersion = "7.0.5"
dependencies {
api(project(":allure-attachments"))
compileOnly("org.springframework:spring-web:$springWebVersion")
testImplementation("com.github.tomakehurst:wiremock")
testImplementation("org.assertj:assertj-core")
testImplementation("org.jboss.resteasy:resteasy-client")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testImplementation("org.mockito:mockito-core")
testImplementation("org.slf4j:slf4j-simple")
testImplementation("org.springframework:spring-web:$springWebVersion")
testImplementation(project(":allure-java-commons-test"))
testImplementation(project(":allure-junit-platform"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks.jar {
manifest {
attributes(mapOf(
"Automatic-Module-Name" to "io.qameta.allure.springweb"
))
}
}
tasks.test {
useJUnitPlatform()
}
tasks.compileJava {
options.release.set(17)
}