-
Notifications
You must be signed in to change notification settings - Fork 31
/
build.gradle.kts
48 lines (38 loc) · 1009 Bytes
/
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
plugins {
java
id("org.graalvm.buildtools.native") version "0.9.24"
}
group = "org.example"
version = "1.0-SNAPSHOT"
description = "Allure Server Java Client"
tasks.withType(Wrapper::class) {
gradleVersion = "7.5.1"
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
tasks.withType(JavaCompile::class) {
options.encoding = "UTF-8"
}
graalvmNative {
toolchainDetection.set(true)
binaries {
named("main") {
mainClass.set("io.eroshenkoam.xcresults.XCResults")
}
}
}
repositories {
mavenCentral()
}
dependencies {
annotationProcessor("info.picocli:picocli-codegen:4.1.4")
implementation("com.fasterxml.jackson.core:jackson-databind:2.10.2")
implementation("io.qameta.allure:allure-model:2.13.1")
implementation("org.freemarker:freemarker:2.3.32")
implementation("info.picocli:picocli:4.1.4")
implementation("commons-io:commons-io:2.6")
testImplementation("junit:junit:4.12")
}