feat(core): setup MapStruct and add SampleMciMapper pilot implementation

This commit is contained in:
jade
2026-07-09 10:06:43 +09:00
parent f590490d96
commit 68ceae9afd
3 changed files with 50 additions and 0 deletions

View File

@@ -30,6 +30,8 @@ subprojects {
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
@@ -37,4 +39,8 @@ subprojects {
options.compilerArgs << '-parameters'
options.compilerArgs << '-Amapstruct.defaultComponentModel=spring'
}
tasks.withType(Test) {
useJUnitPlatform()
}
}