-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
83 lines (73 loc) · 2.78 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
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
id("org.springframework.boot") version "3.4.4"
id("io.spring.dependency-management") version "1.1.7"
id("org.jlleitschuh.gradle.ktlint") version "12.2.0"
kotlin("jvm") version "2.0.21"
kotlin("plugin.spring") version "2.0.21"
}
group = "no.nav.helse.flex"
version = "1.0.0"
description = "flexjar-backend"
java.sourceCompatibility = JavaVersion.VERSION_21
val githubUser: String by project
val githubPassword: String by project
repositories {
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/navikt/maven-release")
}
}
val testContainersVersion = "1.20.6"
val logstashLogbackEncoderVersion = "8.0"
val kluentVersion = "1.73"
val tokenSupportVersion = "5.0.19"
dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("io.micrometer:micrometer-registry-prometheus")
implementation("org.hibernate.validator:hibernate-validator")
implementation("org.postgresql:postgresql")
implementation("org.flywaydb:flyway-database-postgresql")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("net.logstash.logback:logstash-logback-encoder:$logstashLogbackEncoderVersion")
implementation("no.nav.security:token-validation-spring:$tokenSupportVersion")
implementation("no.nav.security:token-client-spring:$tokenSupportVersion")
testImplementation(platform("org.testcontainers:testcontainers-bom:$testContainersVersion"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.testcontainers:postgresql")
testImplementation("org.awaitility:awaitility")
testImplementation("no.nav.security:token-validation-spring-test:$tokenSupportVersion")
testImplementation("org.amshove.kluent:kluent:$kluentVersion")
testImplementation("io.github.serpro69:kotlin-faker:1.16.0")
}
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_21)
freeCompilerArgs.add("-Xjsr305=strict")
if (System.getenv("CI") == "true") {
allWarningsAsErrors.set(true)
}
}
}
tasks {
test {
useJUnitPlatform()
jvmArgs("-XX:+EnableDynamicAgentLoading")
testLogging {
events("PASSED", "FAILED", "SKIPPED")
exceptionFormat = FULL
}
failFast = false
}
}
tasks {
bootJar {
archiveFileName = "app.jar"
}
}