- Added unit tests for `AuditService`, `BaseEntity`, `MedicationPlanService`, and `MessageService`. - Updated Gradle test dependencies across modules to include `mockito-core` and `mockito-kotlin`.
16 lines
433 B
Plaintext
16 lines
433 B
Plaintext
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"))
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.mockito.kotlin:mockito-kotlin:5.3.1")
|
|
}
|