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("org.springframework.boot:spring-boot-starter-data-jpa")
|
2026-01-12 23:22:00 +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
|
|
|
}
|