This repository was archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
73 lines (58 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val junitJupiterVersion = "5.6.2"
val ktorVersion = "1.5.0"
val wireMockVersion = "2.27.2"
plugins {
kotlin("jvm") version "1.4.30"
}
group = "no.nav.helse"
dependencies {
implementation("com.github.navikt:rapids-and-rivers:1.5e3ca6a")
implementation("io.ktor:ktor-client-cio:$ktorVersion")
implementation("io.ktor:ktor-client-jackson:$ktorVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
testImplementation("no.nav:kafka-embedded-env:2.4.0")
testImplementation("org.awaitility:awaitility:4.0.3")
testImplementation("com.github.tomakehurst:wiremock:$wireMockVersion") {
exclude(group = "junit")
}
testImplementation("io.ktor:ktor-client-mock-jvm:$ktorVersion")
testImplementation("io.mockk:mockk:1.10.0")
}
repositories {
jcenter()
maven("https://jitpack.io")
maven("http://packages.confluent.io/maven/")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "15"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "15"
}
named<Jar>("jar") {
archiveBaseName.set("app")
manifest {
attributes["Main-Class"] = "no.nav.helse.sputnik.AppKt"
attributes["Class-Path"] = configurations.runtimeClasspath.get().joinToString(separator = " ") {
it.name
}
}
doLast {
configurations.runtimeClasspath.get().forEach {
val file = File("$buildDir/libs/${it.name}")
if (!file.exists())
it.copyTo(file)
}
}
}
withType<Test> {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}
}