-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (31 loc) · 1.36 KB
/
build.gradle
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
buildscript {
ext {
kotlinVersion = '2.0.21'
jacksonModuleKotlinVersion = '2.18.1'
}
}
plugins {
id("io.snyk.gradle.plugin.snykplugin") version "0.7.0"
id "org.jetbrains.kotlin.jvm" version "$kotlinVersion"
id "org.jetbrains.kotlin.plugin.spring" version "$kotlinVersion"
id "org.jetbrains.kotlin.plugin.allopen" version "$kotlinVersion"
}
apply from: "buildSrc/ep-module.gradle"
apply from: "buildSrc/ep-library.gradle"
group = "no.nav.eessi.pensjon"
dependencies {
// Spring Framework BOM-fil overstyrer så vi får siste patch-versjon av Spring Framework
implementation(platform("org.springframework:spring-framework-bom:6.2.1"))
implementation("org.springframework:spring-web")
implementation("org.springframework:spring-context")
implementation("org.slf4j:slf4j-api:2.0.16")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonModuleKotlinVersion")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonModuleKotlinVersion")
// Test
testImplementation("org.skyscreamer:jsonassert:1.5.3")
testImplementation("org.springframework:spring-test")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
testImplementation("io.mockk:mockk:1.13.14")
// Architecture tests
testImplementation ("com.tngtech.archunit:archunit:1.3.0")
}