From cbbd11d22c6263ade4c5ebf5012841f3966e370c Mon Sep 17 00:00:00 2001 From: Sevket Arisu Date: Wed, 15 Jul 2026 13:12:16 +0100 Subject: [PATCH 1/7] SNI-9118 Filter Negative Number of Previous Convictions --- ...seFileDefendantToCCDefendantConverter.java | 6 +- ...leDefendantToCCDefendantConverterTest.java | 57 +++++++++++++++++++ 2 files changed, 62 insertions(+), 1 deletion(-) diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/main/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverter.java b/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/main/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverter.java index 6d4d8fb5..27a65362 100644 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/main/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverter.java +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/main/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverter.java @@ -69,7 +69,7 @@ public List convert(final List getGender(final uk.gov.moj.cpp.prosecution.casefile.jso } } + private static Integer nonNegativeOrNull(final Integer value) { + return value == null || value < 0 ? null : value; + } + private Address buildAddress(final ParentGuardianInformation parentGuardianInformation) { if (null != parentGuardianInformation.getPersonalInformation() && null != parentGuardianInformation.getPersonalInformation().getAddress()) { diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/test/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverterTest.java b/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/test/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverterTest.java index 7f4969b0..17a4ccfc 100644 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/test/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverterTest.java +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/src/test/java/uk/gov/moj/cpp/prosecution/casefile/event/processor/converter/ProsecutionCaseFileDefendantToCCDefendantConverterTest.java @@ -105,4 +105,61 @@ private void assertAliasMiddleNameValues(final List defendants = prosecutionWithReferenceData.getProsecution().getDefendants(); + defendants.forEach(d -> ReflectionUtil.setField(d, "numPreviousConvictions", -1)); + + final ParamsVO paramsVO = new ParamsVO(); + paramsVO.setCaseId(prosecutionWithReferenceData.getProsecution().getCaseDetails().getCaseId()); + paramsVO.setReferenceDataVO(prosecutionWithReferenceData.getReferenceDataVO()); + paramsVO.setInitiationCode("J"); + + when(referenceDataQueryService.retrieveAlcoholLevelMethods()).thenReturn(asList(alcoholLevelMethodReferenceData().withMethodCode("A").withMethodDescription("Blood").build(), + alcoholLevelMethodReferenceData().withMethodCode("B").withMethodDescription("Breath").build())); + + final List courtsDefendants = converter.convert(defendants, paramsVO); + + assertThat(courtsDefendants.get(0).getNumberOfPreviousConvictionsCited(), is(nullValue())); + } + + @Test + public void convertNonNegativeNumPreviousConvictionsShouldBePreserved() { + final ProsecutionWithReferenceData prosecutionWithReferenceData = buildProsecutionWithReferenceData(EITHER_WAY); + final List defendants = prosecutionWithReferenceData.getProsecution().getDefendants(); + defendants.forEach(d -> ReflectionUtil.setField(d, "numPreviousConvictions", 0)); + + final ParamsVO paramsVO = new ParamsVO(); + paramsVO.setCaseId(prosecutionWithReferenceData.getProsecution().getCaseDetails().getCaseId()); + paramsVO.setReferenceDataVO(prosecutionWithReferenceData.getReferenceDataVO()); + paramsVO.setInitiationCode("J"); + + when(referenceDataQueryService.retrieveAlcoholLevelMethods()).thenReturn(asList(alcoholLevelMethodReferenceData().withMethodCode("A").withMethodDescription("Blood").build(), + alcoholLevelMethodReferenceData().withMethodCode("B").withMethodDescription("Breath").build())); + + final List courtsDefendants = converter.convert(defendants, paramsVO); + + assertThat(courtsDefendants.get(0).getNumberOfPreviousConvictionsCited(), is(0)); + } + + @Test + public void convertNullNumPreviousConvictionsShouldRemainNull() { + final ProsecutionWithReferenceData prosecutionWithReferenceData = buildProsecutionWithReferenceData(EITHER_WAY); + final List defendants = prosecutionWithReferenceData.getProsecution().getDefendants(); + defendants.forEach(d -> ReflectionUtil.setField(d, "numPreviousConvictions", null)); + + final ParamsVO paramsVO = new ParamsVO(); + paramsVO.setCaseId(prosecutionWithReferenceData.getProsecution().getCaseDetails().getCaseId()); + paramsVO.setReferenceDataVO(prosecutionWithReferenceData.getReferenceDataVO()); + paramsVO.setInitiationCode("J"); + + when(referenceDataQueryService.retrieveAlcoholLevelMethods()).thenReturn(asList(alcoholLevelMethodReferenceData().withMethodCode("A").withMethodDescription("Blood").build(), + alcoholLevelMethodReferenceData().withMethodCode("B").withMethodDescription("Breath").build())); + + final List courtsDefendants = converter.convert(defendants, paramsVO); + + assertThat(courtsDefendants.get(0).getNumberOfPreviousConvictionsCited(), is(nullValue())); + } } \ No newline at end of file From 97c92a303775fe18f87249b19173790436b6937c Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 15 Jul 2026 13:16:11 +0000 Subject: [PATCH 2/7] updating poms for 17.0.94 branch with snapshot versions From c160faf761787170112fc75afbc1681cbc55ce37 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 15 Jul 2026 13:16:17 +0000 Subject: [PATCH 3/7] updating poms for 17.0.95-SNAPSHOT development --- pom.xml | 2 +- prosecutioncasefile-command/pom.xml | 2 +- .../prosecutioncasefile-command-api/pom.xml | 2 +- .../prosecutioncasefile-command-handler/pom.xml | 2 +- prosecutioncasefile-common/pom.xml | 2 +- prosecutioncasefile-datatypes-common/pom.xml | 2 +- prosecutioncasefile-defence-service/pom.xml | 2 +- prosecutioncasefile-domain/pom.xml | 2 +- .../prosecutioncasefile-domain-aggregate/pom.xml | 2 +- .../prosecutioncasefile-domain-event-processor/pom.xml | 2 +- .../prosecutioncasefile-domain-event/pom.xml | 2 +- .../prosecutioncasefile-domain-value-schema/pom.xml | 2 +- prosecutioncasefile-event-sources/pom.xml | 2 +- prosecutioncasefile-event/pom.xml | 2 +- .../prosecutioncasefile-event-listener/pom.xml | 2 +- .../prosecutioncasefile-event-processor/pom.xml | 2 +- prosecutioncasefile-healthchecks/pom.xml | 2 +- prosecutioncasefile-integration-test/pom.xml | 2 +- prosecutioncasefile-progression-service/pom.xml | 2 +- prosecutioncasefile-query/pom.xml | 2 +- prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml | 2 +- .../prosecutioncasefile-query-view/pom.xml | 2 +- prosecutioncasefile-refdata/pom.xml | 2 +- prosecutioncasefile-service/pom.xml | 2 +- prosecutioncasefile-validation-rules/pom.xml | 2 +- prosecutioncasefile-viewstore/pom.xml | 2 +- .../prosecutioncasefile-viewstore-liquibase/pom.xml | 2 +- .../prosecutioncasefile-viewstore-persistence/pom.xml | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/pom.xml b/pom.xml index 3a720443..d3443a90 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT pom Prosecution Casefile Microservice - Parent Casefile Microservice - Prosecution Context diff --git a/prosecutioncasefile-command/pom.xml b/prosecutioncasefile-command/pom.xml index 8278faf9..b2104e79 100755 --- a/prosecutioncasefile-command/pom.xml +++ b/prosecutioncasefile-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml index d3ff6cfa..f11c06d2 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml index 84984dec..a82a42c5 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-common/pom.xml b/prosecutioncasefile-common/pom.xml index bf91b20d..5655baec 100644 --- a/prosecutioncasefile-common/pom.xml +++ b/prosecutioncasefile-common/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-datatypes-common/pom.xml b/prosecutioncasefile-datatypes-common/pom.xml index d1019731..21b517cc 100644 --- a/prosecutioncasefile-datatypes-common/pom.xml +++ b/prosecutioncasefile-datatypes-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-defence-service/pom.xml b/prosecutioncasefile-defence-service/pom.xml index d748c5bd..a2350b9d 100644 --- a/prosecutioncasefile-defence-service/pom.xml +++ b/prosecutioncasefile-defence-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-domain/pom.xml b/prosecutioncasefile-domain/pom.xml index da8ef732..d013f440 100755 --- a/prosecutioncasefile-domain/pom.xml +++ b/prosecutioncasefile-domain/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT prosecutioncasefile-domain diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml index 486aea24..98e413d7 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT prosecutioncasefile-domain-aggregate diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml index 7bf17c14..05a3f830 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml index 9e1b63dd..6a29e457 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT prosecutioncasefile-domain-event diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml index 33d6823d..0bd3ec98 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event-sources/pom.xml b/prosecutioncasefile-event-sources/pom.xml index 36c3705f..edcddb3d 100644 --- a/prosecutioncasefile-event-sources/pom.xml +++ b/prosecutioncasefile-event-sources/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/pom.xml b/prosecutioncasefile-event/pom.xml index aff34a8d..d2420492 100755 --- a/prosecutioncasefile-event/pom.xml +++ b/prosecutioncasefile-event/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml index 49804f4d..76afea37 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml index a89d044c..02347e11 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-healthchecks/pom.xml b/prosecutioncasefile-healthchecks/pom.xml index 95409e68..5d311880 100644 --- a/prosecutioncasefile-healthchecks/pom.xml +++ b/prosecutioncasefile-healthchecks/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-integration-test/pom.xml b/prosecutioncasefile-integration-test/pom.xml index f56178c1..f35eae9b 100755 --- a/prosecutioncasefile-integration-test/pom.xml +++ b/prosecutioncasefile-integration-test/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-progression-service/pom.xml b/prosecutioncasefile-progression-service/pom.xml index 62ebc7c4..9ab53792 100644 --- a/prosecutioncasefile-progression-service/pom.xml +++ b/prosecutioncasefile-progression-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/pom.xml b/prosecutioncasefile-query/pom.xml index 2fd2050b..2c5ed5e7 100755 --- a/prosecutioncasefile-query/pom.xml +++ b/prosecutioncasefile-query/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml index 13e38724..f8b0b6ba 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml index f2bbad8b..27b92276 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-refdata/pom.xml b/prosecutioncasefile-refdata/pom.xml index 9eb684c9..b161f499 100644 --- a/prosecutioncasefile-refdata/pom.xml +++ b/prosecutioncasefile-refdata/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-service/pom.xml b/prosecutioncasefile-service/pom.xml index 2747aded..0c533c2a 100644 --- a/prosecutioncasefile-service/pom.xml +++ b/prosecutioncasefile-service/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-validation-rules/pom.xml b/prosecutioncasefile-validation-rules/pom.xml index e0a1ac2a..149ec093 100644 --- a/prosecutioncasefile-validation-rules/pom.xml +++ b/prosecutioncasefile-validation-rules/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 prosecutioncasefile-validation-rules diff --git a/prosecutioncasefile-viewstore/pom.xml b/prosecutioncasefile-viewstore/pom.xml index 2e8bd8de..4c7da00b 100755 --- a/prosecutioncasefile-viewstore/pom.xml +++ b/prosecutioncasefile-viewstore/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT prosecutioncasefile-viewstore diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml index 70d6f840..a13baad4 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-viewstore - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT prosecutioncasefile-viewstore-liquibase diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml index e85f4cdf..526040be 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-viewstore uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.95-SNAPSHOT 4.0.0 From 74d2b9a87c68d2903d270670c2d74ca0eed28bd1 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 15 Jul 2026 14:00:28 +0000 Subject: [PATCH 4/7] updating poms for branch'dev/release-17.0.94' with non-snapshot versions --- pom.xml | 2 +- prosecutioncasefile-command/pom.xml | 2 +- .../prosecutioncasefile-command-api/pom.xml | 2 +- .../prosecutioncasefile-command-handler/pom.xml | 2 +- prosecutioncasefile-common/pom.xml | 2 +- prosecutioncasefile-datatypes-common/pom.xml | 2 +- prosecutioncasefile-defence-service/pom.xml | 2 +- prosecutioncasefile-domain/pom.xml | 2 +- .../prosecutioncasefile-domain-aggregate/pom.xml | 2 +- .../prosecutioncasefile-domain-event-processor/pom.xml | 2 +- .../prosecutioncasefile-domain-event/pom.xml | 2 +- .../prosecutioncasefile-domain-value-schema/pom.xml | 2 +- prosecutioncasefile-event-sources/pom.xml | 2 +- prosecutioncasefile-event/pom.xml | 2 +- .../prosecutioncasefile-event-listener/pom.xml | 2 +- .../prosecutioncasefile-event-processor/pom.xml | 2 +- prosecutioncasefile-healthchecks/pom.xml | 2 +- prosecutioncasefile-integration-test/pom.xml | 2 +- prosecutioncasefile-progression-service/pom.xml | 2 +- prosecutioncasefile-query/pom.xml | 2 +- prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml | 2 +- .../prosecutioncasefile-query-view/pom.xml | 2 +- prosecutioncasefile-refdata/pom.xml | 2 +- prosecutioncasefile-service/pom.xml | 2 +- prosecutioncasefile-validation-rules/pom.xml | 2 +- prosecutioncasefile-viewstore/pom.xml | 2 +- .../prosecutioncasefile-viewstore-liquibase/pom.xml | 2 +- .../prosecutioncasefile-viewstore-persistence/pom.xml | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/pom.xml b/pom.xml index 3a720443..c1a81bcf 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 pom Prosecution Casefile Microservice - Parent Casefile Microservice - Prosecution Context diff --git a/prosecutioncasefile-command/pom.xml b/prosecutioncasefile-command/pom.xml index 8278faf9..e6005195 100755 --- a/prosecutioncasefile-command/pom.xml +++ b/prosecutioncasefile-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml index d3ff6cfa..0608f4d9 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml index 84984dec..a617d9cc 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-common/pom.xml b/prosecutioncasefile-common/pom.xml index bf91b20d..2c434812 100644 --- a/prosecutioncasefile-common/pom.xml +++ b/prosecutioncasefile-common/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-datatypes-common/pom.xml b/prosecutioncasefile-datatypes-common/pom.xml index d1019731..16c8fe99 100644 --- a/prosecutioncasefile-datatypes-common/pom.xml +++ b/prosecutioncasefile-datatypes-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-defence-service/pom.xml b/prosecutioncasefile-defence-service/pom.xml index d748c5bd..1ebd0050 100644 --- a/prosecutioncasefile-defence-service/pom.xml +++ b/prosecutioncasefile-defence-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-domain/pom.xml b/prosecutioncasefile-domain/pom.xml index da8ef732..b555b5e6 100755 --- a/prosecutioncasefile-domain/pom.xml +++ b/prosecutioncasefile-domain/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 prosecutioncasefile-domain diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml index 486aea24..8b57c99a 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94-SNAPSHOT + 17.0.94 prosecutioncasefile-domain-aggregate diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml index 7bf17c14..60218340 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml index 9e1b63dd..58fc1789 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94-SNAPSHOT + 17.0.94 prosecutioncasefile-domain-event diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml index 33d6823d..4e3fa35d 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event-sources/pom.xml b/prosecutioncasefile-event-sources/pom.xml index 36c3705f..cc250819 100644 --- a/prosecutioncasefile-event-sources/pom.xml +++ b/prosecutioncasefile-event-sources/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/pom.xml b/prosecutioncasefile-event/pom.xml index aff34a8d..8fa63b36 100755 --- a/prosecutioncasefile-event/pom.xml +++ b/prosecutioncasefile-event/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml index 49804f4d..956530bf 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml index a89d044c..5e9e4ca0 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-healthchecks/pom.xml b/prosecutioncasefile-healthchecks/pom.xml index 95409e68..6b2aa70e 100644 --- a/prosecutioncasefile-healthchecks/pom.xml +++ b/prosecutioncasefile-healthchecks/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-integration-test/pom.xml b/prosecutioncasefile-integration-test/pom.xml index f56178c1..c2751ac1 100755 --- a/prosecutioncasefile-integration-test/pom.xml +++ b/prosecutioncasefile-integration-test/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-progression-service/pom.xml b/prosecutioncasefile-progression-service/pom.xml index 62ebc7c4..3548328f 100644 --- a/prosecutioncasefile-progression-service/pom.xml +++ b/prosecutioncasefile-progression-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/pom.xml b/prosecutioncasefile-query/pom.xml index 2fd2050b..1f5277c9 100755 --- a/prosecutioncasefile-query/pom.xml +++ b/prosecutioncasefile-query/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml index 13e38724..32048674 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml index f2bbad8b..2114409b 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-refdata/pom.xml b/prosecutioncasefile-refdata/pom.xml index 9eb684c9..1c51cf9a 100644 --- a/prosecutioncasefile-refdata/pom.xml +++ b/prosecutioncasefile-refdata/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-service/pom.xml b/prosecutioncasefile-service/pom.xml index 2747aded..f791a897 100644 --- a/prosecutioncasefile-service/pom.xml +++ b/prosecutioncasefile-service/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-validation-rules/pom.xml b/prosecutioncasefile-validation-rules/pom.xml index e0a1ac2a..27a1aeba 100644 --- a/prosecutioncasefile-validation-rules/pom.xml +++ b/prosecutioncasefile-validation-rules/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 prosecutioncasefile-validation-rules diff --git a/prosecutioncasefile-viewstore/pom.xml b/prosecutioncasefile-viewstore/pom.xml index 2e8bd8de..e83a1667 100755 --- a/prosecutioncasefile-viewstore/pom.xml +++ b/prosecutioncasefile-viewstore/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94-SNAPSHOT + 17.0.94 prosecutioncasefile-viewstore diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml index 70d6f840..889999a5 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-viewstore - 17.0.94-SNAPSHOT + 17.0.94 prosecutioncasefile-viewstore-liquibase diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml index e85f4cdf..428b90e0 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-viewstore uk.gov.moj.cpp.prosecution.casefile - 17.0.94-SNAPSHOT + 17.0.94 4.0.0 From 935ac7869871738b6328f6eb03706adeac61ce95 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 15 Jul 2026 14:00:55 +0000 Subject: [PATCH 5/7] updating develop poms to master versions to avoid merge conflicts --- pom.xml | 2 +- prosecutioncasefile-command/pom.xml | 2 +- .../prosecutioncasefile-command-api/pom.xml | 2 +- .../prosecutioncasefile-command-handler/pom.xml | 2 +- prosecutioncasefile-common/pom.xml | 2 +- prosecutioncasefile-datatypes-common/pom.xml | 2 +- prosecutioncasefile-defence-service/pom.xml | 2 +- prosecutioncasefile-domain/pom.xml | 2 +- .../prosecutioncasefile-domain-aggregate/pom.xml | 2 +- .../prosecutioncasefile-domain-event-processor/pom.xml | 2 +- .../prosecutioncasefile-domain-event/pom.xml | 2 +- .../prosecutioncasefile-domain-value-schema/pom.xml | 2 +- prosecutioncasefile-event-sources/pom.xml | 2 +- prosecutioncasefile-event/pom.xml | 2 +- .../prosecutioncasefile-event-listener/pom.xml | 2 +- .../prosecutioncasefile-event-processor/pom.xml | 2 +- prosecutioncasefile-healthchecks/pom.xml | 2 +- prosecutioncasefile-integration-test/pom.xml | 2 +- prosecutioncasefile-progression-service/pom.xml | 2 +- prosecutioncasefile-query/pom.xml | 2 +- prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml | 2 +- .../prosecutioncasefile-query-view/pom.xml | 2 +- prosecutioncasefile-refdata/pom.xml | 2 +- prosecutioncasefile-service/pom.xml | 2 +- prosecutioncasefile-validation-rules/pom.xml | 2 +- prosecutioncasefile-viewstore/pom.xml | 2 +- .../prosecutioncasefile-viewstore-liquibase/pom.xml | 2 +- .../prosecutioncasefile-viewstore-persistence/pom.xml | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/pom.xml b/pom.xml index d3443a90..c1a81bcf 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 pom Prosecution Casefile Microservice - Parent Casefile Microservice - Prosecution Context diff --git a/prosecutioncasefile-command/pom.xml b/prosecutioncasefile-command/pom.xml index b2104e79..e6005195 100755 --- a/prosecutioncasefile-command/pom.xml +++ b/prosecutioncasefile-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml index f11c06d2..0608f4d9 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml index a82a42c5..a617d9cc 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-common/pom.xml b/prosecutioncasefile-common/pom.xml index 5655baec..2c434812 100644 --- a/prosecutioncasefile-common/pom.xml +++ b/prosecutioncasefile-common/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-datatypes-common/pom.xml b/prosecutioncasefile-datatypes-common/pom.xml index 21b517cc..16c8fe99 100644 --- a/prosecutioncasefile-datatypes-common/pom.xml +++ b/prosecutioncasefile-datatypes-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-defence-service/pom.xml b/prosecutioncasefile-defence-service/pom.xml index a2350b9d..1ebd0050 100644 --- a/prosecutioncasefile-defence-service/pom.xml +++ b/prosecutioncasefile-defence-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-domain/pom.xml b/prosecutioncasefile-domain/pom.xml index d013f440..b555b5e6 100755 --- a/prosecutioncasefile-domain/pom.xml +++ b/prosecutioncasefile-domain/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 prosecutioncasefile-domain diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml index 98e413d7..8b57c99a 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.95-SNAPSHOT + 17.0.94 prosecutioncasefile-domain-aggregate diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml index 05a3f830..60218340 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml index 6a29e457..58fc1789 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.95-SNAPSHOT + 17.0.94 prosecutioncasefile-domain-event diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml index 0bd3ec98..4e3fa35d 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event-sources/pom.xml b/prosecutioncasefile-event-sources/pom.xml index edcddb3d..cc250819 100644 --- a/prosecutioncasefile-event-sources/pom.xml +++ b/prosecutioncasefile-event-sources/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/pom.xml b/prosecutioncasefile-event/pom.xml index d2420492..8fa63b36 100755 --- a/prosecutioncasefile-event/pom.xml +++ b/prosecutioncasefile-event/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml index 76afea37..956530bf 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml index 02347e11..5e9e4ca0 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-healthchecks/pom.xml b/prosecutioncasefile-healthchecks/pom.xml index 5d311880..6b2aa70e 100644 --- a/prosecutioncasefile-healthchecks/pom.xml +++ b/prosecutioncasefile-healthchecks/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-integration-test/pom.xml b/prosecutioncasefile-integration-test/pom.xml index f35eae9b..c2751ac1 100755 --- a/prosecutioncasefile-integration-test/pom.xml +++ b/prosecutioncasefile-integration-test/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-progression-service/pom.xml b/prosecutioncasefile-progression-service/pom.xml index 9ab53792..3548328f 100644 --- a/prosecutioncasefile-progression-service/pom.xml +++ b/prosecutioncasefile-progression-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/pom.xml b/prosecutioncasefile-query/pom.xml index 2c5ed5e7..1f5277c9 100755 --- a/prosecutioncasefile-query/pom.xml +++ b/prosecutioncasefile-query/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml index f8b0b6ba..32048674 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml index 27b92276..2114409b 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-refdata/pom.xml b/prosecutioncasefile-refdata/pom.xml index b161f499..1c51cf9a 100644 --- a/prosecutioncasefile-refdata/pom.xml +++ b/prosecutioncasefile-refdata/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-service/pom.xml b/prosecutioncasefile-service/pom.xml index 0c533c2a..f791a897 100644 --- a/prosecutioncasefile-service/pom.xml +++ b/prosecutioncasefile-service/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 diff --git a/prosecutioncasefile-validation-rules/pom.xml b/prosecutioncasefile-validation-rules/pom.xml index 149ec093..27a1aeba 100644 --- a/prosecutioncasefile-validation-rules/pom.xml +++ b/prosecutioncasefile-validation-rules/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 prosecutioncasefile-validation-rules diff --git a/prosecutioncasefile-viewstore/pom.xml b/prosecutioncasefile-viewstore/pom.xml index 4c7da00b..e83a1667 100755 --- a/prosecutioncasefile-viewstore/pom.xml +++ b/prosecutioncasefile-viewstore/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.95-SNAPSHOT + 17.0.94 prosecutioncasefile-viewstore diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml index a13baad4..889999a5 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-viewstore - 17.0.95-SNAPSHOT + 17.0.94 prosecutioncasefile-viewstore-liquibase diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml index 526040be..428b90e0 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-viewstore uk.gov.moj.cpp.prosecution.casefile - 17.0.95-SNAPSHOT + 17.0.94 4.0.0 From dbd79e201a7b93246bd91df8a21eda5bd45b38f8 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 15 Jul 2026 14:01:00 +0000 Subject: [PATCH 6/7] Updating develop poms back to pre merge state --- pom.xml | 2 +- prosecutioncasefile-command/pom.xml | 2 +- .../prosecutioncasefile-command-api/pom.xml | 2 +- .../prosecutioncasefile-command-handler/pom.xml | 2 +- prosecutioncasefile-common/pom.xml | 2 +- prosecutioncasefile-datatypes-common/pom.xml | 2 +- prosecutioncasefile-defence-service/pom.xml | 2 +- prosecutioncasefile-domain/pom.xml | 2 +- .../prosecutioncasefile-domain-aggregate/pom.xml | 2 +- .../prosecutioncasefile-domain-event-processor/pom.xml | 2 +- .../prosecutioncasefile-domain-event/pom.xml | 2 +- .../prosecutioncasefile-domain-value-schema/pom.xml | 2 +- prosecutioncasefile-event-sources/pom.xml | 2 +- prosecutioncasefile-event/pom.xml | 2 +- .../prosecutioncasefile-event-listener/pom.xml | 2 +- .../prosecutioncasefile-event-processor/pom.xml | 2 +- prosecutioncasefile-healthchecks/pom.xml | 2 +- prosecutioncasefile-integration-test/pom.xml | 2 +- prosecutioncasefile-progression-service/pom.xml | 2 +- prosecutioncasefile-query/pom.xml | 2 +- prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml | 2 +- .../prosecutioncasefile-query-view/pom.xml | 2 +- prosecutioncasefile-refdata/pom.xml | 2 +- prosecutioncasefile-service/pom.xml | 2 +- prosecutioncasefile-validation-rules/pom.xml | 2 +- prosecutioncasefile-viewstore/pom.xml | 2 +- .../prosecutioncasefile-viewstore-liquibase/pom.xml | 2 +- .../prosecutioncasefile-viewstore-persistence/pom.xml | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/pom.xml b/pom.xml index c1a81bcf..d3443a90 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT pom Prosecution Casefile Microservice - Parent Casefile Microservice - Prosecution Context diff --git a/prosecutioncasefile-command/pom.xml b/prosecutioncasefile-command/pom.xml index e6005195..b2104e79 100755 --- a/prosecutioncasefile-command/pom.xml +++ b/prosecutioncasefile-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml index 0608f4d9..f11c06d2 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml index a617d9cc..a82a42c5 100755 --- a/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml +++ b/prosecutioncasefile-command/prosecutioncasefile-command-handler/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-command - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-common/pom.xml b/prosecutioncasefile-common/pom.xml index 2c434812..5655baec 100644 --- a/prosecutioncasefile-common/pom.xml +++ b/prosecutioncasefile-common/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-datatypes-common/pom.xml b/prosecutioncasefile-datatypes-common/pom.xml index 16c8fe99..21b517cc 100644 --- a/prosecutioncasefile-datatypes-common/pom.xml +++ b/prosecutioncasefile-datatypes-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-defence-service/pom.xml b/prosecutioncasefile-defence-service/pom.xml index 1ebd0050..a2350b9d 100644 --- a/prosecutioncasefile-defence-service/pom.xml +++ b/prosecutioncasefile-defence-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-domain/pom.xml b/prosecutioncasefile-domain/pom.xml index b555b5e6..d013f440 100755 --- a/prosecutioncasefile-domain/pom.xml +++ b/prosecutioncasefile-domain/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT prosecutioncasefile-domain diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml index 8b57c99a..98e413d7 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-aggregate/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94 + 17.0.95-SNAPSHOT prosecutioncasefile-domain-aggregate diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml index 60218340..05a3f830 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml index 58fc1789..6a29e457 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-domain - 17.0.94 + 17.0.95-SNAPSHOT prosecutioncasefile-domain-event diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml index 4e3fa35d..0bd3ec98 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-value-schema/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-domain uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event-sources/pom.xml b/prosecutioncasefile-event-sources/pom.xml index cc250819..edcddb3d 100644 --- a/prosecutioncasefile-event-sources/pom.xml +++ b/prosecutioncasefile-event-sources/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/pom.xml b/prosecutioncasefile-event/pom.xml index 8fa63b36..d2420492 100755 --- a/prosecutioncasefile-event/pom.xml +++ b/prosecutioncasefile-event/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml index 956530bf..76afea37 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-listener/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml index 5e9e4ca0..02347e11 100755 --- a/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml +++ b/prosecutioncasefile-event/prosecutioncasefile-event-processor/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-event - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-healthchecks/pom.xml b/prosecutioncasefile-healthchecks/pom.xml index 6b2aa70e..5d311880 100644 --- a/prosecutioncasefile-healthchecks/pom.xml +++ b/prosecutioncasefile-healthchecks/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-integration-test/pom.xml b/prosecutioncasefile-integration-test/pom.xml index c2751ac1..f35eae9b 100755 --- a/prosecutioncasefile-integration-test/pom.xml +++ b/prosecutioncasefile-integration-test/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-progression-service/pom.xml b/prosecutioncasefile-progression-service/pom.xml index 3548328f..9ab53792 100644 --- a/prosecutioncasefile-progression-service/pom.xml +++ b/prosecutioncasefile-progression-service/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/pom.xml b/prosecutioncasefile-query/pom.xml index 1f5277c9..2c5ed5e7 100755 --- a/prosecutioncasefile-query/pom.xml +++ b/prosecutioncasefile-query/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml index 32048674..f8b0b6ba 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-api/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml index 2114409b..27b92276 100755 --- a/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml +++ b/prosecutioncasefile-query/prosecutioncasefile-query-view/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-query - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-refdata/pom.xml b/prosecutioncasefile-refdata/pom.xml index 1c51cf9a..b161f499 100644 --- a/prosecutioncasefile-refdata/pom.xml +++ b/prosecutioncasefile-refdata/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-service/pom.xml b/prosecutioncasefile-service/pom.xml index f791a897..0c533c2a 100644 --- a/prosecutioncasefile-service/pom.xml +++ b/prosecutioncasefile-service/pom.xml @@ -4,7 +4,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 diff --git a/prosecutioncasefile-validation-rules/pom.xml b/prosecutioncasefile-validation-rules/pom.xml index 27a1aeba..149ec093 100644 --- a/prosecutioncasefile-validation-rules/pom.xml +++ b/prosecutioncasefile-validation-rules/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-parent uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 prosecutioncasefile-validation-rules diff --git a/prosecutioncasefile-viewstore/pom.xml b/prosecutioncasefile-viewstore/pom.xml index e83a1667..4c7da00b 100755 --- a/prosecutioncasefile-viewstore/pom.xml +++ b/prosecutioncasefile-viewstore/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-parent - 17.0.94 + 17.0.95-SNAPSHOT prosecutioncasefile-viewstore diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml index 889999a5..a13baad4 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-liquibase/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.prosecution.casefile prosecutioncasefile-viewstore - 17.0.94 + 17.0.95-SNAPSHOT prosecutioncasefile-viewstore-liquibase diff --git a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml index 428b90e0..526040be 100755 --- a/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml +++ b/prosecutioncasefile-viewstore/prosecutioncasefile-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ prosecutioncasefile-viewstore uk.gov.moj.cpp.prosecution.casefile - 17.0.94 + 17.0.95-SNAPSHOT 4.0.0 From 084942cbb9dc0c2d0b40e4e9bcb864c8ae68c1f0 Mon Sep 17 00:00:00 2001 From: sbegarihmcts Date: Tue, 21 Jul 2026 11:46:05 +0100 Subject: [PATCH 7/7] Rebase 2619 build fix --- pom.xml | 2 +- .../pom.xml | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a855a61e..412fd764 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ 17.0.38 0.0.3 17.0.42 - 17.0.262 + 17.0.279 17.0.87 ${coredomain.version} 17.0.24 diff --git a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml index b3929ba6..2e5c5193 100644 --- a/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml +++ b/prosecutioncasefile-domain/prosecutioncasefile-domain-event-processor/pom.xml @@ -245,6 +245,17 @@ + + uk.gov.moj.cpp.progression + progression-datatypes-common + ${progression.version} + + + * + * + + + uk.gov.moj.cpp.core.domain criminal-court-public-model