diff --git a/pom.xml b/pom.xml index b4eed9ebba..b973abb24f 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT pom Progression services application @@ -67,7 +67,7 @@ 1.0.6 6.4.1 17.103.129 - 17.103.152 + 17.103.147-cct-1981-SNAPSHOT 17.0.144 17.104.46 17.0.85 diff --git a/progression-command/pom.xml b/progression-command/pom.xml index 4533586343..d89e46cf5d 100644 --- a/progression-command/pom.xml +++ b/progression-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-command pom diff --git a/progression-command/progression-command-api/pom.xml b/progression-command/progression-command-api/pom.xml index aa095be164..a76739aea2 100644 --- a/progression-command/progression-command-api/pom.xml +++ b/progression-command/progression-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-command - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-command-api war diff --git a/progression-command/progression-command-api/src/raml/json/schema/progression.correct-hearing-days-without-court-centre.json b/progression-command/progression-command-api/src/raml/json/schema/progression.correct-hearing-days-without-court-centre.json index ddcf398b00..eeb20c9672 100644 --- a/progression-command/progression-command-api/src/raml/json/schema/progression.correct-hearing-days-without-court-centre.json +++ b/progression-command/progression-command-api/src/raml/json/schema/progression.correct-hearing-days-without-court-centre.json @@ -4,13 +4,13 @@ "type": "object", "properties": { "id": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" }, "hearingDays": { "type": "array", "minItems": 1, "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" + "$ref": "http://moj.gov.uk/progression/hearingDay.json" } } }, diff --git a/progression-command/progression-command-handler/pom.xml b/progression-command/progression-command-handler/pom.xml index 992dcf2a0a..256032bbb2 100644 --- a/progression-command/progression-command-handler/pom.xml +++ b/progression-command/progression-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-command - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-command-handler war diff --git a/progression-command/progression-command-handler/src/raml/json/schema/progression.command.correct-hearing-days-without-court-centre.json b/progression-command/progression-command-handler/src/raml/json/schema/progression.command.correct-hearing-days-without-court-centre.json index 884c07220a..75b70d096e 100644 --- a/progression-command/progression-command-handler/src/raml/json/schema/progression.command.correct-hearing-days-without-court-centre.json +++ b/progression-command/progression-command-handler/src/raml/json/schema/progression.command.correct-hearing-days-without-court-centre.json @@ -4,13 +4,13 @@ "type": "object", "properties": { "id": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" }, "hearingDays": { "type": "array", "minItems": 1, "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" + "$ref": "http://moj.gov.uk/progression/hearingDay.json" } } }, diff --git a/progression-domain/pom.xml b/progression-domain/pom.xml index fb963cabf7..15b8d092dd 100644 --- a/progression-domain/pom.xml +++ b/progression-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-domain pom diff --git a/progression-domain/progression-datatypes-common/pom.xml b/progression-domain/progression-datatypes-common/pom.xml index 829508909f..a9fed69112 100644 --- a/progression-domain/progression-datatypes-common/pom.xml +++ b/progression-domain/progression-datatypes-common/pom.xml @@ -3,7 +3,7 @@ progression-domain uk.gov.moj.cpp.progression - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 diff --git a/progression-domain/progression-datatypes-common/src/main/resources/json/schema/moj-progression-hearingDay.json b/progression-domain/progression-datatypes-common/src/main/resources/json/schema/moj-progression-hearingDay.json new file mode 100644 index 0000000000..75bf252907 --- /dev/null +++ b/progression-domain/progression-datatypes-common/src/main/resources/json/schema/moj-progression-hearingDay.json @@ -0,0 +1,32 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "http://moj.gov.uk/progression/hearingDay.json", + "type": "object", + "properties": { + "sittingDay": { + "type": "string", + "format": "date-time" + }, + "listingSequence": { + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/positiveInteger" + }, + "listedDurationMinutes": { + "description": "The listed duration in minutes", + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/positiveInteger" + }, + "courtCentreId": { + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" + }, + "courtRoomId": { + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" + }, + "hasSharedResults": { + "type": "boolean" + } + }, + "required": [ + "sittingDay", + "listedDurationMinutes" + ], + "additionalProperties": false +} diff --git a/progression-domain/progression-datatypes-common/src/main/resources/json/schema/shared-definitions.json b/progression-domain/progression-datatypes-common/src/main/resources/json/schema/shared-definitions.json index 6e7745d8b7..050790e8a2 100644 --- a/progression-domain/progression-datatypes-common/src/main/resources/json/schema/shared-definitions.json +++ b/progression-domain/progression-datatypes-common/src/main/resources/json/schema/shared-definitions.json @@ -3,11 +3,19 @@ "id": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json", "type": "object", "definitions": { + "uuid": { + "type": "string", + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" + }, + "positiveInteger": { + "type": "integer", + "minimum": 0 + }, "refData": { "type": "object", "properties": { "directionRefDataId": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" }, "directionRefDataType": { "type": "string" diff --git a/progression-domain/progression-domain-aggregate/pom.xml b/progression-domain/progression-domain-aggregate/pom.xml index 1f50903afb..78bd9856b3 100644 --- a/progression-domain/progression-domain-aggregate/pom.xml +++ b/progression-domain/progression-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ progression-domain uk.gov.moj.cpp.progression - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 progression-domain-aggregate diff --git a/progression-domain/progression-domain-aggregate/src/test/java/uk/gov/moj/cpp/progression/aggregate/HearingAggregateTest.java b/progression-domain/progression-domain-aggregate/src/test/java/uk/gov/moj/cpp/progression/aggregate/HearingAggregateTest.java index 7f32747220..b4ef9f0908 100644 --- a/progression-domain/progression-domain-aggregate/src/test/java/uk/gov/moj/cpp/progression/aggregate/HearingAggregateTest.java +++ b/progression-domain/progression-domain-aggregate/src/test/java/uk/gov/moj/cpp/progression/aggregate/HearingAggregateTest.java @@ -4473,7 +4473,7 @@ private Hearing getHearing(final UUID offenceId) { private HearingDaysWithoutCourtCentreCorrected createHearingDaysWithoutCourtCentreCorrected() { return HearingDaysWithoutCourtCentreCorrected.hearingDaysWithoutCourtCentreCorrected() - .withHearingDays(asList(HearingDay.hearingDay() + .withHearingDays(asList(uk.gov.moj.progression.HearingDay.hearingDay() .withCourtCentreId(UUID.randomUUID()) .withCourtRoomId(UUID.randomUUID()) .withListedDurationMinutes(30) diff --git a/progression-domain/progression-domain-common/pom.xml b/progression-domain/progression-domain-common/pom.xml index 4f3288cc28..1dbeea5c25 100644 --- a/progression-domain/progression-domain-common/pom.xml +++ b/progression-domain/progression-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-domain - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-domain-common diff --git a/progression-domain/progression-domain-message/pom.xml b/progression-domain/progression-domain-message/pom.xml index bb2d8715e6..b0442effe6 100644 --- a/progression-domain/progression-domain-message/pom.xml +++ b/progression-domain/progression-domain-message/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.progression progression-domain - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-domain-message diff --git a/progression-domain/progression-domain-message/src/raml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json b/progression-domain/progression-domain-message/src/raml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json index e9da12e247..6235ed97a2 100644 --- a/progression-domain/progression-domain-message/src/raml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json +++ b/progression-domain/progression-domain-message/src/raml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json @@ -1,21 +1,21 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://justice.gov.uk/progression/events/progression.events.hearing-days-without-court-centre-corrected.json", - "type": "object", - "properties": { - "hearingDays": { - "type": "array", - "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" - } - }, - "id": { - "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" - } - }, - "required": [ - "id", - "hearingDays" - ], - "additionalProperties": false -} \ No newline at end of file + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "http://justice.gov.uk/progression/events/progression.events.hearing-days-without-court-centre-corrected.json", + "type": "object", + "properties": { + "hearingDays": { + "type": "array", + "items": { + "$ref": "http://moj.gov.uk/progression/hearingDay.json" + } + }, + "id": { + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" + } + }, + "required": [ + "id", + "hearingDays" + ], + "additionalProperties": false +} diff --git a/progression-event-sources/pom.xml b/progression-event-sources/pom.xml index 2b6b3d4f60..3caa6de27b 100644 --- a/progression-event-sources/pom.xml +++ b/progression-event-sources/pom.xml @@ -3,7 +3,7 @@ progression-parent uk.gov.moj.cpp.progression - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 diff --git a/progression-event/pom.xml b/progression-event/pom.xml index 3d7f1a51b2..3c1459480f 100644 --- a/progression-event/pom.xml +++ b/progression-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-event pom diff --git a/progression-event/progression-event-indexer/pom.xml b/progression-event/progression-event-indexer/pom.xml index c69d9ed1b2..ffca6660fb 100644 --- a/progression-event/progression-event-indexer/pom.xml +++ b/progression-event/progression-event-indexer/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-event - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-event-indexer war diff --git a/progression-event/progression-event-listener/pom.xml b/progression-event/progression-event-listener/pom.xml index 35f29563a7..67d6f814ff 100644 --- a/progression-event/progression-event-listener/pom.xml +++ b/progression-event/progression-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-event - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-event-listener war diff --git a/progression-event/progression-event-listener/src/main/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListener.java b/progression-event/progression-event-listener/src/main/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListener.java index 90dd657f6b..c6bb72dede 100644 --- a/progression-event/progression-event-listener/src/main/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListener.java +++ b/progression-event/progression-event-listener/src/main/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListener.java @@ -48,10 +48,10 @@ public void correctHearingDaysWithoutCourtCentre(final JsonEnvelope event) { } final HearingDaysWithoutCourtCentreCorrected hearingDaysWithoutCourtCentreCorrected = jsonObjectToObjectConverter.convert(event.payloadAsJsonObject(), HearingDaysWithoutCourtCentreCorrected.class); - final List hearingDays = hearingDaysWithoutCourtCentreCorrected.getHearingDays(); + final List correctedHearingDays = hearingDaysWithoutCourtCentreCorrected.getHearingDays(); final UUID hearingId = hearingDaysWithoutCourtCentreCorrected.getId(); - final UUID courtCentreId = hearingDays.get(0).getCourtCentreId(); - final UUID courtRoomId = hearingDays.get(0).getCourtRoomId(); + final UUID courtCentreId = correctedHearingDays.get(0).getCourtCentreId(); + final UUID courtRoomId = correctedHearingDays.get(0).getCourtRoomId(); final HearingEntity dbHearingEntity = hearingRepository.findBy(hearingId); final JsonObject dbHearingJsonObject = jsonFromString(dbHearingEntity.getPayload()); diff --git a/progression-event/progression-event-listener/src/test/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListenerTest.java b/progression-event/progression-event-listener/src/test/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListenerTest.java index 6e409e1bd5..67ccdc6046 100644 --- a/progression-event/progression-event-listener/src/test/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListenerTest.java +++ b/progression-event/progression-event-listener/src/test/java/uk/gov/moj/cpp/prosecutioncase/event/listener/HearingDaysWithoutCourtCentreCorrectedEventListenerTest.java @@ -7,7 +7,7 @@ import static uk.gov.justice.services.test.utils.core.reflection.ReflectionUtil.setField; import uk.gov.justice.core.courts.Hearing; -import uk.gov.justice.core.courts.HearingDay; +import uk.gov.moj.progression.HearingDay; import uk.gov.justice.progression.events.HearingDaysWithoutCourtCentreCorrected; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.common.converter.ObjectToJsonObjectConverter; diff --git a/progression-event/progression-event-listener/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json b/progression-event/progression-event-listener/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json index f49f0e3b8f..6235ed97a2 100644 --- a/progression-event/progression-event-listener/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json +++ b/progression-event/progression-event-listener/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json @@ -6,11 +6,11 @@ "hearingDays": { "type": "array", "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" + "$ref": "http://moj.gov.uk/progression/hearingDay.json" } }, "id": { - "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" } }, "required": [ @@ -18,4 +18,4 @@ "hearingDays" ], "additionalProperties": false -} \ No newline at end of file +} diff --git a/progression-event/progression-event-processor/pom.xml b/progression-event/progression-event-processor/pom.xml index 7781ed2fea..c94d7842c1 100644 --- a/progression-event/progression-event-processor/pom.xml +++ b/progression-event/progression-event-processor/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-event - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-event-processor war @@ -39,6 +39,11 @@ progression-domain-common ${project.version} + + uk.gov.moj.cpp.progression + progression-datatypes-common + ${project.version} + uk.gov.moj.cpp.material material-client diff --git a/progression-event/progression-event-processor/src/test/java/uk/gov/moj/cpp/progression/processor/HearingUpdatedEventProcessorTest.java b/progression-event/progression-event-processor/src/test/java/uk/gov/moj/cpp/progression/processor/HearingUpdatedEventProcessorTest.java index 9ae74bcf59..e677e2ae8b 100644 --- a/progression-event/progression-event-processor/src/test/java/uk/gov/moj/cpp/progression/processor/HearingUpdatedEventProcessorTest.java +++ b/progression-event/progression-event-processor/src/test/java/uk/gov/moj/cpp/progression/processor/HearingUpdatedEventProcessorTest.java @@ -442,6 +442,33 @@ public void shouldHearingOffenceVerdictUpdated() { } + @Test + public void shouldHandlerHearingChangedToProbationCaseWorkerSendCorrectHearingDaysCommand() { + final UUID hearingId = randomUUID(); + final JsonObject payload = createObjectBuilder() + .add("id", hearingId.toString()) + .add("hearingDays", Json.createArrayBuilder() + .add(createObjectBuilder() + .add("sittingDay", "2020-10-13T10:00:00.000Z") + .add("listedDurationMinutes", 60) + .build()) + .build()) + .build(); + final JsonEnvelope jsonEnvelope = envelopeFrom( + metadataWithRandomUUID("public.events.listing.hearing-days-without-court-centre-corrected"), + payload); + + eventProcessor.handlerHearingChangedToProbationCaseWorker(jsonEnvelope); + + verify(sender, times(1)).send(senderJsonEnvelopeCaptor.capture()); + final DefaultEnvelope sent = senderJsonEnvelopeCaptor.getValue(); + assertThat(sent.metadata().name(), is("progression.command.correct-hearing-days-without-court-centre")); + assertThat(sent.payload().toString(), isJson(allOf( + withJsonPath("$.id", is(hearingId.toString())), + withJsonPath("$.hearingDays.length()", is(1)), + withJsonPath("$.hearingDays[0].listedDurationMinutes", is(60))))); + } + @Test public void shouldUpdateDefendantOnApplicationHearing() { final UUID applicationId1 = randomUUID(); diff --git a/progression-event/progression-event-processor/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json b/progression-event/progression-event-processor/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json index f49f0e3b8f..6235ed97a2 100644 --- a/progression-event/progression-event-processor/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json +++ b/progression-event/progression-event-processor/src/yaml/json/schema/progression.events.hearing-days-without-court-centre-corrected.json @@ -6,11 +6,11 @@ "hearingDays": { "type": "array", "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" + "$ref": "http://moj.gov.uk/progression/hearingDay.json" } }, "id": { - "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" } }, "required": [ @@ -18,4 +18,4 @@ "hearingDays" ], "additionalProperties": false -} \ No newline at end of file +} diff --git a/progression-event/progression-event-processor/src/yaml/json/schema/public.events.listing.hearing-days-without-court-centre-corrected.json b/progression-event/progression-event-processor/src/yaml/json/schema/public.events.listing.hearing-days-without-court-centre-corrected.json index f936fb8823..b9b2e0bb6e 100644 --- a/progression-event/progression-event-processor/src/yaml/json/schema/public.events.listing.hearing-days-without-court-centre-corrected.json +++ b/progression-event/progression-event-processor/src/yaml/json/schema/public.events.listing.hearing-days-without-court-centre-corrected.json @@ -4,13 +4,13 @@ "type": "object", "properties": { "id": { - "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" + "$ref": "http://moj.gov.uk/cpp/progression/common/shared-definitions.json#/definitions/uuid" }, "hearingDays": { "type": "array", "minItems": 1, "items": { - "$ref": "http://justice.gov.uk/core/courts/hearingDay.json" + "$ref": "http://moj.gov.uk/progression/hearingDay.json" } } }, diff --git a/progression-eventprocessorstore/pom.xml b/progression-eventprocessorstore/pom.xml index d1f58630c2..feab10c9b3 100644 --- a/progression-eventprocessorstore/pom.xml +++ b/progression-eventprocessorstore/pom.xml @@ -3,7 +3,7 @@ progression-parent uk.gov.moj.cpp.progression - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 progression-eventprocessorstore diff --git a/progression-eventprocessorstore/progression-eventprocessorstore-liquibase/pom.xml b/progression-eventprocessorstore/progression-eventprocessorstore-liquibase/pom.xml index 3026c95abf..db062827f7 100644 --- a/progression-eventprocessorstore/progression-eventprocessorstore-liquibase/pom.xml +++ b/progression-eventprocessorstore/progression-eventprocessorstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-eventprocessorstore - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 progression-eventprocessorstore-liquibase diff --git a/progression-eventprocessorstore/progression-eventprocessorstore-persistence/pom.xml b/progression-eventprocessorstore/progression-eventprocessorstore-persistence/pom.xml index dbcfb7979d..d64cd5769e 100644 --- a/progression-eventprocessorstore/progression-eventprocessorstore-persistence/pom.xml +++ b/progression-eventprocessorstore/progression-eventprocessorstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-eventprocessorstore - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 progression-eventprocessorstore-persistence diff --git a/progression-healthchecks/pom.xml b/progression-healthchecks/pom.xml index e1c3d452fb..3d9db328cb 100644 --- a/progression-healthchecks/pom.xml +++ b/progression-healthchecks/pom.xml @@ -3,7 +3,7 @@ progression-parent uk.gov.moj.cpp.progression - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 diff --git a/progression-integration-test/pom.xml b/progression-integration-test/pom.xml index 29320ee1b1..317beb9ccb 100644 --- a/progression-integration-test/pom.xml +++ b/progression-integration-test/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT false diff --git a/progression-performance-test/pom.xml b/progression-performance-test/pom.xml index 5da946f53c..3388def447 100644 --- a/progression-performance-test/pom.xml +++ b/progression-performance-test/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 diff --git a/progression-query/pom.xml b/progression-query/pom.xml index df81a5e898..b02709d788 100644 --- a/progression-query/pom.xml +++ b/progression-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-query pom diff --git a/progression-query/progression-query-api/pom.xml b/progression-query/progression-query-api/pom.xml index a77d7244c5..649f2e0bcb 100644 --- a/progression-query/progression-query-api/pom.xml +++ b/progression-query/progression-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-query - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-query-api war diff --git a/progression-query/progression-query-view/pom.xml b/progression-query/progression-query-view/pom.xml index 6d55538fe6..0316b5fce6 100644 --- a/progression-query/progression-query-view/pom.xml +++ b/progression-query/progression-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-query - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-query-view jar diff --git a/progression-refdata-service/pom.xml b/progression-refdata-service/pom.xml index 4c1966e7ab..c76db666df 100644 --- a/progression-refdata-service/pom.xml +++ b/progression-refdata-service/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT diff --git a/progression-service/pom.xml b/progression-service/pom.xml index 2e8b8d5eb7..7526faf593 100644 --- a/progression-service/pom.xml +++ b/progression-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT 4.0.0 diff --git a/progression-test-utilities/pom.xml b/progression-test-utilities/pom.xml index 1f30da5a20..5b5300fb31 100644 --- a/progression-test-utilities/pom.xml +++ b/progression-test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT diff --git a/progression-viewstore/pom.xml b/progression-viewstore/pom.xml index f18c1f5cf2..731cb0ea43 100644 --- a/progression-viewstore/pom.xml +++ b/progression-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.progression progression-parent - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-viewstore pom diff --git a/progression-viewstore/progression-viewstore-liquibase/pom.xml b/progression-viewstore/progression-viewstore-liquibase/pom.xml index 95fbf58160..2493bccff6 100644 --- a/progression-viewstore/progression-viewstore-liquibase/pom.xml +++ b/progression-viewstore/progression-viewstore-liquibase/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.progression progression-viewstore - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-viewstore-liquibase diff --git a/progression-viewstore/progression-viewstore-persistence/pom.xml b/progression-viewstore/progression-viewstore-persistence/pom.xml index 4128731782..ad6a909adb 100644 --- a/progression-viewstore/progression-viewstore-persistence/pom.xml +++ b/progression-viewstore/progression-viewstore-persistence/pom.xml @@ -4,7 +4,7 @@ uk.gov.moj.cpp.progression progression-viewstore - 17.0.247-SNAPSHOT + 17.0.245-cct-1981-SNAPSHOT progression-viewstore-persistence