-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
28 lines (24 loc) · 862 Bytes
/
build.gradle.kts
File metadata and controls
28 lines (24 loc) · 862 Bytes
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
description = "Allure java-diff-utils integration"
val javaDiffUtils = "4.15"
dependencies {
api(project(":allure-attachments"))
implementation("io.github.java-diff-utils:java-diff-utils:$javaDiffUtils")
testImplementation("javax.annotation:javax.annotation-api")
testImplementation("org.assertj:assertj-core")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testImplementation("org.slf4j:slf4j-simple")
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.diff"
))
}
}
tasks.test {
useJUnitPlatform()
}