-
Notifications
You must be signed in to change notification settings - Fork 227
/
build.gradle.kts
56 lines (49 loc) · 1.62 KB
/
build.gradle.kts
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
description = "Allure Karate Integration"
val karateVersion = "1.4.1"
configurations {
testImplementation {
exclude(group="ch.qos.logback", module = "logback-classic")
}
}
dependencies {
api(project(":allure-java-commons"))
compileOnly("com.intuit.karate:karate-core:${karateVersion}")
implementation(project(":allure-test-filter"))
testAnnotationProcessor("org.slf4j:slf4j-simple")
testAnnotationProcessor(project(":allure-descriptions-javadoc"))
testImplementation("com.intuit.karate:karate-core:${karateVersion}")
testImplementation("io.github.glytching:junit-extensions")
testImplementation("org.assertj:assertj-core")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testImplementation("org.mock-server:mockserver-netty:5.15.0")
testImplementation("org.slf4j:slf4j-simple")
testImplementation(project(":allure-java-commons-test"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks.jar {
manifest {
attributes(mapOf(
"Automatic-Module-Name" to "io.qameta.allure.karate"
))
}
from("src/main/services") {
into("META-INF/services")
}
}
tasks.test {
systemProperty("junit.jupiter.execution.parallel.enabled", "false")
useJUnitPlatform()
exclude("**/features/*")
}
val spiOffJar: Jar by tasks.creating(Jar::class) {
from(sourceSets.getByName("main").output)
archiveClassifier.set("spi-off")
}
publishing {
publications {
named<MavenPublication>("maven") {
artifact(spiOffJar)
}
}
}