2026-01-09 18:35:06 +01:00
|
|
|
plugins {
|
|
|
|
|
kotlin("jvm")
|
|
|
|
|
kotlin("plugin.spring")
|
|
|
|
|
kotlin("plugin.jpa")
|
|
|
|
|
id("io.spring.dependency-management")
|
|
|
|
|
id("java-library")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
api(project(":common"))
|
|
|
|
|
implementation(project(":modules:audit"))
|
2026-01-14 15:12:10 +01:00
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
|
testImplementation("org.mockito:mockito-core")
|
|
|
|
|
testImplementation("org.mockito.kotlin:mockito-kotlin:5.3.1")
|
2026-01-09 18:35:06 +01:00
|
|
|
}
|