FEAT: Preparation work for on-disk encryption and certificate stores #13

Merged
MarkL4YG merged 9 commits from feat/certEncryption into main 2024-11-22 08:48:02 +00:00
Showing only changes of commit 40111b4e03 - Show all commits

View file

@ -50,6 +50,7 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test") testImplementation("org.springframework.security:spring-security-test")
testImplementation("org.assertj:assertj-core") testImplementation("org.assertj:assertj-core")
testImplementation("org.mockito:mockito-core")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
} }
@ -58,5 +59,6 @@ tasks.withType<Test> {
useJUnitPlatform() useJUnitPlatform()
systemProperty("spring.profiles.active", "test") systemProperty("spring.profiles.active", "test")
jvmArgs("-XX:+EnableDynamicAgentLoading") // DynamicAgentLoading for byteBuddy within Mockito
testLogging.showStandardStreams = true testLogging.showStandardStreams = true
} }