feat(account): add configuration for NowChess Account Service

This commit is contained in:
2026-04-22 22:17:14 +02:00
parent 67511fc649
commit e1f49e9289
9 changed files with 269 additions and 71 deletions
+5 -1
View File
@@ -42,7 +42,11 @@ val coverageExclusions = listOf(
// JacksonConfig — Quarkus lifecycle hook, no testable logic beyond ObjectMapper registration
"**/io/src/main/scala/de/nowchess/io/service/config/JacksonConfig.scala",
//RuleSetRestAdapter - Quarkus integration of rule into core, only testable with Quarkus tests
"**/core/src/main/de/nowchess/chess/adapter/RuleSetRestAdapter.scala"
"**/core/src/main/de/nowchess/chess/adapter/RuleSetRestAdapter.scala",
// AccountResource / ChallengeResource — REST integration layer; @QuarkusTest not instrumented by Scoverage
"**/account/src/main/scala/de/nowchess/account/resource/**",
// JacksonConfig / NativeReflectionConfig — Quarkus lifecycle hooks, no testable logic
"**/account/src/main/scala/de/nowchess/account/config/**"
)
// Converts a Sonar-style glob to a scoverage regex (matched against full source path).