-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
47 lines (36 loc) · 1.45 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
plugins {
id("common")
application
alias(libs.plugins.shadow.jar)
}
repositories {
mavenCentral()
maven("https://packages.confluent.io/maven/")
maven("https://github-package-registry-mirror.gc.nav.no/cached/maven-release")
}
application {
applicationName = "dp-regel-grunnlag"
mainClass.set("no.nav.dagpenger.regel.grunnlag.ApplicationKt")
}
dependencies {
implementation(kotlin("stdlib"))
implementation(libs.rapids.and.rivers)
implementation("com.github.navikt:dp-inntekt-kontrakter:1_20231220.55a8a9")
implementation("com.github.navikt:dp-grunnbelop:20240821.109.11cc88")
implementation("de.huxhorn.sulky:de.huxhorn.sulky.ulid:8.3.0")
implementation("io.prometheus:simpleclient_common:0.16.0")
implementation("io.prometheus:simpleclient_hotspot:0.16.0")
implementation("no.nav:nare-prometheus:0b41ab4")
implementation(libs.konfig)
implementation("io.getunleash:unleash-client-java:9.3.2")
implementation(libs.kotlin.logging)
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter-params:${libs.versions.junit.get()}")
testImplementation(libs.kotest.assertions.core)
testImplementation("io.kotest:kotest-runner-junit5-jvm:${libs.versions.kotest.get()}")
testImplementation(libs.mockk)
testImplementation(libs.rapids.and.rivers.test)
}
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
mergeServiceFiles()
}