fix: address PR review findings for quarkus skills

- Add missing objectMapper field to EventService example (quarkus-patterns)
- Fix eventService.validate() → documentValidator.validate() API mismatch (quarkus-tdd)
- Add DocumentValidator mock declaration in Camel route test (quarkus-tdd)
- Update .opencode java-reviewer.txt to mention Quarkus alongside Spring Boot
This commit is contained in:
AlexisLeDain
2026-04-08 22:08:38 +02:00
parent 63934f382a
commit 9b9f71c2e5
3 changed files with 7 additions and 3 deletions
+1
View File
@@ -156,6 +156,7 @@ public class ProcessingService {
@RequiredArgsConstructor
public class EventService {
private final EventRepository eventRepository;
private final ObjectMapper objectMapper;
public void createSuccessEvent(Object payload, String eventType) {
Event event = new Event();