-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (31 loc) · 1.1 KB
/
build.gradle.kts
File metadata and controls
36 lines (31 loc) · 1.1 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
description = "Allure JOOQ Integration"
val jooqVersion = "3.19.10"
dependencies {
api(project(":allure-java-commons"))
compileOnly("org.jooq:jooq:${jooqVersion}")
testImplementation("io.zonky.test:embedded-postgres:2.0.7")
testImplementation("org.assertj:assertj-core")
testImplementation("org.jooq:jooq:${jooqVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.mockito:mockito-core")
testImplementation("org.slf4j:slf4j-simple")
testImplementation(platform("io.zonky.test.postgres:embedded-postgres-binaries-bom:16.2.0"))
testImplementation(project(":allure-assertj"))
testImplementation(project(":allure-java-commons-test"))
testImplementation(project(":allure-junit-platform"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.postgresql:postgresql:42.7.7")
}
tasks.compileJava {
options.release.set(17)
}
tasks.jar {
manifest {
attributes(mapOf(
"Automatic-Module-Name" to "io.qameta.allure.jooq"
))
}
}
tasks.test {
useJUnitPlatform()
}