This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
114 lines (94 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val dusseldorfKtorVersion = "3.2.1.2-ce40a5b"
val ktorVersion = "2.1.2"
val k9FormatVersion = "7.0.2"
val kafkaEmbeddedEnvVersion = "3.2.1"
val kafkaVersion = "3.2.3"
val fuelVersion = "2.3.1"
val tokenSupportVersion = "2.1.1"
val mockOauth2ServerVersion = "0.5.4"
val mainClass = "no.nav.helse.AppKt"
plugins {
kotlin("jvm") version "1.7.20"
id("com.github.johnrengelman.shadow") version "7.1.2"
}
dependencies {
// Server
implementation("no.nav.helse:dusseldorf-ktor-core:$dusseldorfKtorVersion")
implementation("no.nav.helse:dusseldorf-ktor-jackson:$dusseldorfKtorVersion")
implementation("no.nav.helse:dusseldorf-ktor-metrics:$dusseldorfKtorVersion")
implementation("no.nav.helse:dusseldorf-ktor-health:$dusseldorfKtorVersion")
implementation("no.nav.helse:dusseldorf-ktor-auth:$dusseldorfKtorVersion")
implementation("com.github.kittinunf.fuel:fuel:$fuelVersion")
implementation("com.github.kittinunf.fuel:fuel-coroutines:$fuelVersion") {
exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core")
}
implementation("io.ktor:ktor-server-cors:$ktorVersion")
//K9-format
implementation("no.nav.k9:soknad:$k9FormatVersion")
implementation("org.glassfish:jakarta.el:3.0.4")
// kafka
implementation("org.apache.kafka:kafka-clients:$kafkaVersion")
// NAV
implementation("no.nav.security:token-validation-ktor-v2:$tokenSupportVersion")
// Client
implementation("no.nav.helse:dusseldorf-ktor-client:$dusseldorfKtorVersion")
implementation("no.nav.helse:dusseldorf-oauth2-client:$dusseldorfKtorVersion")
// Test
testImplementation("no.nav.security:mock-oauth2-server:$mockOauth2ServerVersion")
testImplementation("no.nav.helse:dusseldorf-test-support:$dusseldorfKtorVersion")
testImplementation("no.nav:kafka-embedded-env:$kafkaEmbeddedEnvVersion") {
exclude(group = "org.apache.kafka", module = "kafka_2.13")
}
testImplementation("io.ktor:ktor-server-test-host:$ktorVersion") {
exclude(group = "org.eclipse.jetty")
}
testImplementation("org.skyscreamer:jsonassert:1.5.1")
testImplementation("org.awaitility:awaitility-kotlin:4.2.0")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
testImplementation("no.nav:kafka-embedded-env:$kafkaEmbeddedEnvVersion") {
exclude(group="org.apache.kafka", module="kafka-clients")
}
testImplementation("io.mockk:mockk:1.13.1")
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/navikt/dusseldorf-ktor")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
mavenCentral()
maven("https://jitpack.io")
maven("https://packages.confluent.io/maven/")
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}
tasks.named<KotlinCompile>("compileTestKotlin") {
kotlinOptions.jvmTarget = "17"
}
tasks.withType<ShadowJar> {
archiveBaseName.set("app")
archiveClassifier.set("")
manifest {
attributes(
mapOf(
"Main-Class" to mainClass
)
)
}
}
tasks.withType<Wrapper> {
gradleVersion = "7.5.1"
}
tasks.withType<Test> {
useJUnitPlatform()
}