From a782bdd2f343354b342409c1dfbbcfa0b8b6a4da Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Sun, 1 Sep 2024 14:03:59 +0530 Subject: [PATCH 01/11] adding SelectedHandel Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 + .../uingenerator/stage/UinGeneratorStage.java | 85 ++++++++++++------- 2 files changed, 57 insertions(+), 29 deletions(-) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index 6f1a3df3700..a34fa840318 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,6 +20,7 @@ on: - master - 1.* - develop + - v1.* jobs: build-maven-registration: diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java index 63c05ac64ac..3f11211fbe2 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java @@ -463,35 +463,62 @@ public MessageDTO process(MessageDTO object) { return object; } - private void loadDemographicIdentity(Map fieldMap, JSONObject demographicIdentity) throws IOException, JSONException { - for (Map.Entry e : fieldMap.entrySet()) { - if (e.getValue() != null) { - String value = e.getValue().toString(); - if (value != null) { - Object json = new JSONTokener(value).nextValue(); - if (json instanceof org.json.JSONObject) { - HashMap hashMap = objectMapper.readValue(value, HashMap.class); - demographicIdentity.putIfAbsent(e.getKey(), hashMap); - } - else if (json instanceof JSONArray) { - List jsonList = new ArrayList<>(); - JSONArray jsonArray = new JSONArray(value); - for (int i = 0; i < jsonArray.length(); i++) { - Object obj = jsonArray.get(i); - HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); - if(trimWhitespaces && hashMap.get("value") instanceof String) { - hashMap.put("value",((String)hashMap.get("value")).trim()); - } - jsonList.add(hashMap); - } - demographicIdentity.putIfAbsent(e.getKey(), jsonList); - } else - demographicIdentity.putIfAbsent(e.getKey(), value); - } else - demographicIdentity.putIfAbsent(e.getKey(), value); - } - } - } + private void loadDemographicIdentity(Map fieldMap, JSONObject demographicIdentity) throws IOException, JSONException { + for (Map.Entry e : fieldMap.entrySet()) { + if (e.getValue() != null) { + String value = e.getValue().toString(); + if (value != null) { + Object json = new JSONTokener(value).nextValue(); + if (json instanceof org.json.JSONObject) { + HashMap hashMap = objectMapper.readValue(value, HashMap.class); + demographicIdentity.putIfAbsent(e.getKey(), hashMap); + } + else if (json instanceof JSONArray) { +// List jsonList = new ArrayList<>(); +// JSONArray jsonArray = new JSONArray(value); +// for (int i = 0; i < jsonArray.length(); i++) { +// Object obj = jsonArray.get(i); +// HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); +// if(trimWhitespaces && hashMap.get("value") instanceof String) { +// hashMap.put("value",((String)hashMap.get("value")).trim()); +// } +// jsonList.add(hashMap); +// } +// demographicIdentity.putIfAbsent(e.getKey(), jsonList); + + List jsonList = new ArrayList<>(); + + JSONArray jsonArray = new JSONArray(value); + if (jsonArray.length() > 0 && jsonArray.get(0) instanceof String) { + List stringList = new ArrayList<>(); + for (int i = 0; i < jsonArray.length(); i++) { + String str=jsonArray.getString(i); + if(trimWhitespaces) + { + str=str.trim(); + } + stringList.add(str); + } + demographicIdentity.putIfAbsent(e.getKey(), stringList); + } else { + for (int i = 0; i < jsonArray.length(); i++) { + Object obj = jsonArray.get(i); + HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); + if(trimWhitespaces && hashMap.get("value") instanceof String) { + hashMap.put("value",((String)hashMap.get("value")).trim()); + } + jsonList.add(hashMap); + } + } + demographicIdentity.putIfAbsent(e.getKey(), jsonList); + + } else + demographicIdentity.putIfAbsent(e.getKey(), value); + } else + demographicIdentity.putIfAbsent(e.getKey(), value); + } + } + } /** * Send id repo with uin. From 26d08a880d967e2c676cc8e36f245207e617ff04 Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Thu, 12 Sep 2024 11:59:43 +0530 Subject: [PATCH 02/11] [ RCF-921 ] changes fof selected handel Signed-off-by: khuddus shariff --- .../uingenerator/stage/UinGeneratorStage.java | 85 ++++++++----------- 1 file changed, 35 insertions(+), 50 deletions(-) diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java index 3f11211fbe2..8f0afc3ddf1 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java @@ -87,6 +87,8 @@ import io.mosip.registration.processor.status.dto.RegistrationStatusDto; import io.mosip.registration.processor.status.service.RegistrationStatusService; +import javax.swing.plaf.IconUIResource; + /** * The Class UinGeneratorStage. * @@ -465,57 +467,40 @@ public MessageDTO process(MessageDTO object) { private void loadDemographicIdentity(Map fieldMap, JSONObject demographicIdentity) throws IOException, JSONException { for (Map.Entry e : fieldMap.entrySet()) { - if (e.getValue() != null) { - String value = e.getValue().toString(); - if (value != null) { - Object json = new JSONTokener(value).nextValue(); - if (json instanceof org.json.JSONObject) { - HashMap hashMap = objectMapper.readValue(value, HashMap.class); - demographicIdentity.putIfAbsent(e.getKey(), hashMap); - } - else if (json instanceof JSONArray) { -// List jsonList = new ArrayList<>(); -// JSONArray jsonArray = new JSONArray(value); -// for (int i = 0; i < jsonArray.length(); i++) { -// Object obj = jsonArray.get(i); -// HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); -// if(trimWhitespaces && hashMap.get("value") instanceof String) { -// hashMap.put("value",((String)hashMap.get("value")).trim()); -// } -// jsonList.add(hashMap); -// } -// demographicIdentity.putIfAbsent(e.getKey(), jsonList); - - List jsonList = new ArrayList<>(); - - JSONArray jsonArray = new JSONArray(value); - if (jsonArray.length() > 0 && jsonArray.get(0) instanceof String) { - List stringList = new ArrayList<>(); - for (int i = 0; i < jsonArray.length(); i++) { - String str=jsonArray.getString(i); - if(trimWhitespaces) - { - str=str.trim(); - } - stringList.add(str); - } - demographicIdentity.putIfAbsent(e.getKey(), stringList); - } else { - for (int i = 0; i < jsonArray.length(); i++) { - Object obj = jsonArray.get(i); - HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); - if(trimWhitespaces && hashMap.get("value") instanceof String) { - hashMap.put("value",((String)hashMap.get("value")).trim()); - } - jsonList.add(hashMap); - } - } - demographicIdentity.putIfAbsent(e.getKey(), jsonList); + if(e.getValue()==null) { + continue; + } + + String value = e.getValue().toString(); + if(value==null) { + demographicIdentity.putIfAbsent(e.getKey(), value); + continue; + } + + Object json = new JSONTokener(value).nextValue(); + if (json instanceof org.json.JSONObject) { + HashMap hashMap = objectMapper.readValue(value, HashMap.class); + demographicIdentity.putIfAbsent(e.getKey(), hashMap); + continue; + } - } else - demographicIdentity.putIfAbsent(e.getKey(), value); - } else - demographicIdentity.putIfAbsent(e.getKey(), value); + if (json instanceof JSONArray) { + List jsonList = new ArrayList<>(); + JSONArray jsonArray = new JSONArray(value); + for (int i = 0; i < jsonArray.length(); i++) { + Object obj = jsonArray.get(i); + if (obj instanceof String) { + jsonList.add(obj); + } else { + HashMap hashMap = objectMapper.readValue(obj.toString(), HashMap.class); + + if (trimWhitespaces && hashMap.containsKey("value") && hashMap.get("value") instanceof String) { + hashMap.put("value", ((String) hashMap.get("value")).trim()); + } + jsonList.add(hashMap); + } + } + demographicIdentity.putIfAbsent(e.getKey(), jsonList); } } } From 62f790a5e06ee28df4252589e6f1bef735be087c Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Fri, 13 Sep 2024 14:38:11 +0530 Subject: [PATCH 03/11] removing branch name rom git action trigger list Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index a34fa840318..6f1a3df3700 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,7 +20,6 @@ on: - master - 1.* - develop - - v1.* jobs: build-maven-registration: From 0333a608b25d75fa311cf3f47577c3b6c298560a Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Wed, 18 Sep 2024 12:34:47 +0530 Subject: [PATCH 04/11] changes for selected handels Signed-off-by: khuddus shariff --- .../stages/uingenerator/stage/UinGeneratorStage.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java index 8f0afc3ddf1..d3a0d0a7a1c 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java @@ -467,12 +467,12 @@ public MessageDTO process(MessageDTO object) { private void loadDemographicIdentity(Map fieldMap, JSONObject demographicIdentity) throws IOException, JSONException { for (Map.Entry e : fieldMap.entrySet()) { - if(e.getValue()==null) { + if (e.getValue() == null) { continue; } String value = e.getValue().toString(); - if(value==null) { + if (value == null) { demographicIdentity.putIfAbsent(e.getKey(), value); continue; } @@ -502,6 +502,9 @@ private void loadDemographicIdentity(Map fieldMap, JSONObject de } demographicIdentity.putIfAbsent(e.getKey(), jsonList); } + else { + demographicIdentity.putIfAbsent(e.getKey(), value); + } } } From 8f785af421df4282bac522c629f27cdfdc5cfddf Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Wed, 18 Sep 2024 12:36:42 +0530 Subject: [PATCH 05/11] changes for selected handels Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index 6f1a3df3700..f02078792b8 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,6 +20,7 @@ on: - master - 1.* - develop + - v1* jobs: build-maven-registration: From 5132b74086614776012b75dee937c74584492f04 Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Wed, 18 Sep 2024 18:39:46 +0530 Subject: [PATCH 06/11] changes for selected handels Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index f02078792b8..6f1a3df3700 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,7 +20,6 @@ on: - master - 1.* - develop - - v1* jobs: build-maven-registration: From 732526a332ab7ec94e3e9508cd857388089e4bcf Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Thu, 19 Sep 2024 10:49:58 +0530 Subject: [PATCH 07/11] changes for selected handels Signed-off-by: khuddus shariff --- .../processor/stages/uingenerator/stage/UinGeneratorStage.java | 1 - 1 file changed, 1 deletion(-) diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java index d3a0d0a7a1c..89a6fd5744f 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java @@ -87,7 +87,6 @@ import io.mosip.registration.processor.status.dto.RegistrationStatusDto; import io.mosip.registration.processor.status.service.RegistrationStatusService; -import javax.swing.plaf.IconUIResource; /** * The Class UinGeneratorStage. From 5167cddde9ccbd10bfdd101b96714cb9e51ae875 Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Thu, 19 Sep 2024 10:50:36 +0530 Subject: [PATCH 08/11] changes for selected handels Signed-off-by: khuddus shariff --- .../processor/stages/uingenerator/stage/UinGeneratorStage.java | 1 - 1 file changed, 1 deletion(-) diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java index 89a6fd5744f..8e98f9614a4 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/src/main/java/io/mosip/registration/processor/stages/uingenerator/stage/UinGeneratorStage.java @@ -87,7 +87,6 @@ import io.mosip.registration.processor.status.dto.RegistrationStatusDto; import io.mosip.registration.processor.status.service.RegistrationStatusService; - /** * The Class UinGeneratorStage. * From 4ed866a4f6d61f6fdd0b44906c99c2c117bc1b98 Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Thu, 19 Sep 2024 15:34:07 +0530 Subject: [PATCH 09/11] changes for selected handels for docker file. adding ARG and LABEL Signed-off-by: khuddus shariff --- .../registration-processor-abis/Dockerfile | 9 +++++++++ .../registration-processor-dmz-packet-server/Dockerfile | 9 +++++++++ .../Dockerfile | 9 +++++++++ .../Dockerfile | 9 +++++++++ .../registration-processor-landing-zone/Dockerfile | 9 +++++++++ .../registration-processor-reprocessor/Dockerfile | 9 +++++++++ .../Dockerfile | 9 +++++++++ 7 files changed, 63 insertions(+) diff --git a/registration-processor/core-processor/registration-processor-abis/Dockerfile b/registration-processor/core-processor/registration-processor-abis/Dockerfile index ee5b26edf18..f05538e215d 100644 --- a/registration-processor/core-processor/registration-processor-abis/Dockerfile +++ b/registration-processor/core-processor/registration-processor-abis/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine diff --git a/registration-processor/init/registration-processor-dmz-packet-server/Dockerfile b/registration-processor/init/registration-processor-dmz-packet-server/Dockerfile index a0ded0a963d..731559d732f 100644 --- a/registration-processor/init/registration-processor-dmz-packet-server/Dockerfile +++ b/registration-processor/init/registration-processor-dmz-packet-server/Dockerfile @@ -1,5 +1,14 @@ FROM nginx +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + VOLUME /home/mosip COPY nginx.conf /etc/nginx/nginx.conf diff --git a/registration-processor/init/registration-processor-registration-status-service/Dockerfile b/registration-processor/init/registration-processor-registration-status-service/Dockerfile index 6f4b8b88b67..5d1c142e1c0 100644 --- a/registration-processor/init/registration-processor-registration-status-service/Dockerfile +++ b/registration-processor/init/registration-processor-registration-status-service/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine diff --git a/registration-processor/post-processor/registration-processor-registration-transaction-service/Dockerfile b/registration-processor/post-processor/registration-processor-registration-transaction-service/Dockerfile index 1d6dfc2031a..f4f55286b62 100644 --- a/registration-processor/post-processor/registration-processor-registration-transaction-service/Dockerfile +++ b/registration-processor/post-processor/registration-processor-registration-transaction-service/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine diff --git a/registration-processor/registration-processor-landing-zone/Dockerfile b/registration-processor/registration-processor-landing-zone/Dockerfile index b9e4a372aab..4e73ab57719 100644 --- a/registration-processor/registration-processor-landing-zone/Dockerfile +++ b/registration-processor/registration-processor-landing-zone/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine diff --git a/registration-processor/workflow-engine/registration-processor-reprocessor/Dockerfile b/registration-processor/workflow-engine/registration-processor-reprocessor/Dockerfile index 2585338e371..8cc6ea1b3a8 100644 --- a/registration-processor/workflow-engine/registration-processor-reprocessor/Dockerfile +++ b/registration-processor/workflow-engine/registration-processor-reprocessor/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine diff --git a/registration-processor/workflow-engine/registration-processor-workflow-manager-service/Dockerfile b/registration-processor/workflow-engine/registration-processor-workflow-manager-service/Dockerfile index 869902c1ee6..cdeafeb63a7 100644 --- a/registration-processor/workflow-engine/registration-processor-workflow-manager-service/Dockerfile +++ b/registration-processor/workflow-engine/registration-processor-workflow-manager-service/Dockerfile @@ -1,5 +1,14 @@ FROM openjdk:11 +ARG SOURCE +ARG COMMIT_HASH +ARG COMMIT_ID +ARG BUILD_TIME +LABEL source=${SOURCE} +LABEL commit_hash=${COMMIT_HASH} +LABEL commit_id=${COMMIT_ID} +LABEL build_time=${BUILD_TIME} + #Uncomment below and Comment above line(i.e. FROM openjdk:8) for OS specific (e.g. Alpine OS ) docker base image #FROM openjdk:8-jdk-alpine From 80ab1f4393e0e37670e798dd560cc41a427722aa Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Mon, 23 Sep 2024 12:56:16 +0530 Subject: [PATCH 10/11] changes for selected handels for docker file. adding ARG and LABEL Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index 6f1a3df3700..a6b6b766b81 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,6 +20,7 @@ on: - master - 1.* - develop + - MOSIP* jobs: build-maven-registration: From d1efa38d165c492b855b89e729670ef4b21c2f60 Mon Sep 17 00:00:00 2001 From: khuddus shariff Date: Tue, 8 Oct 2024 17:58:37 +0530 Subject: [PATCH 11/11] MOSIP-36288 Signed-off-by: khuddus shariff --- .github/workflows/push-trigger.yml | 1 - registration-processor/core-processor/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../registration-processor-abis/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- registration-processor/init/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../mosip-stage-executor/pom.xml | 4 ++-- registration-processor/pom.xml | 16 ++++++++-------- registration-processor/post-processor/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- registration-processor/pre-processor/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- registration-processor/qc-users-manger/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../dependency-reduced-pom.xml | 4 ++-- .../pom.xml | 6 +++--- .../registration-processor-core/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../registration-processor-landing-zone/pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../pom.xml | 4 ++-- .../registration-processor-rest-client/pom.xml | 4 ++-- registration-processor/stage-groups/pom.xml | 4 ++-- .../registration-processor-stage-group-1/pom.xml | 8 ++++---- .../registration-processor-stage-group-2/pom.xml | 12 ++++++------ .../registration-processor-stage-group-3/pom.xml | 14 +++++++------- .../registration-processor-stage-group-4/pom.xml | 10 +++++----- .../registration-processor-stage-group-5/pom.xml | 16 ++++++++-------- .../registration-processor-stage-group-6/pom.xml | 12 ++++++------ .../registration-processor-stage-group-7/pom.xml | 14 +++++++------- registration-processor/workflow-engine/pom.xml | 4 ++-- .../registration-processor-reprocessor/pom.xml | 4 ++-- .../pom.xml | 4 ++-- 55 files changed, 144 insertions(+), 145 deletions(-) diff --git a/.github/workflows/push-trigger.yml b/.github/workflows/push-trigger.yml index a6b6b766b81..6f1a3df3700 100644 --- a/.github/workflows/push-trigger.yml +++ b/.github/workflows/push-trigger.yml @@ -20,7 +20,6 @@ on: - master - 1.* - develop - - MOSIP* jobs: build-maven-registration: diff --git a/registration-processor/core-processor/pom.xml b/registration-processor/core-processor/pom.xml index fa91c1f0578..29ae034c694 100644 --- a/registration-processor/core-processor/pom.xml +++ b/registration-processor/core-processor/pom.xml @@ -5,9 +5,9 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 core-processor core-processor diff --git a/registration-processor/core-processor/registration-processor-abis-handler-stage/pom.xml b/registration-processor/core-processor/registration-processor-abis-handler-stage/pom.xml index a37de58feed..a58084a498f 100644 --- a/registration-processor/core-processor/registration-processor-abis-handler-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-abis-handler-stage/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-abis-handler-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-abis-middleware-stage/pom.xml b/registration-processor/core-processor/registration-processor-abis-middleware-stage/pom.xml index fa7793ec1ea..c141ade2ac0 100644 --- a/registration-processor/core-processor/registration-processor-abis-middleware-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-abis-middleware-stage/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-abis-middleware-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-abis/pom.xml b/registration-processor/core-processor/registration-processor-abis/pom.xml index 6c2b745f082..cb6cf881899 100644 --- a/registration-processor/core-processor/registration-processor-abis/pom.xml +++ b/registration-processor/core-processor/registration-processor-abis/pom.xml @@ -8,10 +8,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-abis - 1.2.0.1 + 1.2.0.2 registration-processor-abis UTF-8 diff --git a/registration-processor/core-processor/registration-processor-bio-dedupe-stage/pom.xml b/registration-processor/core-processor/registration-processor-bio-dedupe-stage/pom.xml index 56ff425b0df..bf235d99cfd 100644 --- a/registration-processor/core-processor/registration-processor-bio-dedupe-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-bio-dedupe-stage/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-bio-dedupe-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-biometric-authentication-stage/pom.xml b/registration-processor/core-processor/registration-processor-biometric-authentication-stage/pom.xml index 23d4521323a..f9f921af311 100644 --- a/registration-processor/core-processor/registration-processor-biometric-authentication-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-biometric-authentication-stage/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-biometric-authentication-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-biometric-extraction-stage/pom.xml b/registration-processor/core-processor/registration-processor-biometric-extraction-stage/pom.xml index b520f750e72..b6875d421e4 100644 --- a/registration-processor/core-processor/registration-processor-biometric-extraction-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-biometric-extraction-stage/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-biometric-extraction-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-demo-dedupe-stage/pom.xml b/registration-processor/core-processor/registration-processor-demo-dedupe-stage/pom.xml index 81de309f801..eeb197d04e0 100644 --- a/registration-processor/core-processor/registration-processor-demo-dedupe-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-demo-dedupe-stage/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-demo-dedupe-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-finalization-stage/pom.xml b/registration-processor/core-processor/registration-processor-finalization-stage/pom.xml index adb6556ca2c..af9216c3255 100644 --- a/registration-processor/core-processor/registration-processor-finalization-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-finalization-stage/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-finalization-stage registration-processor-finalization-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-manual-adjudication-stage/pom.xml b/registration-processor/core-processor/registration-processor-manual-adjudication-stage/pom.xml index b2cb336df8c..028dde5470c 100644 --- a/registration-processor/core-processor/registration-processor-manual-adjudication-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-manual-adjudication-stage/pom.xml @@ -8,11 +8,11 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-manual-adjudication-stage - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/core-processor/registration-processor-uin-generator-stage/pom.xml b/registration-processor/core-processor/registration-processor-uin-generator-stage/pom.xml index f6ffd9f8f5c..7502626623a 100644 --- a/registration-processor/core-processor/registration-processor-uin-generator-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-uin-generator-stage/pom.xml @@ -4,10 +4,10 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-uin-generator-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/core-processor/registration-processor-verification-stage/pom.xml b/registration-processor/core-processor/registration-processor-verification-stage/pom.xml index 5be0233fbd7..508bb64d899 100644 --- a/registration-processor/core-processor/registration-processor-verification-stage/pom.xml +++ b/registration-processor/core-processor/registration-processor-verification-stage/pom.xml @@ -8,11 +8,11 @@ io.mosip.registrationprocessor core-processor - 1.2.0.1 + 1.2.0.2 registration-processor-verification-stage - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/init/pom.xml b/registration-processor/init/pom.xml index 3070a69db67..465bf970200 100644 --- a/registration-processor/init/pom.xml +++ b/registration-processor/init/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 init - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/init/registration-processor-packet-receiver-stage/pom.xml b/registration-processor/init/registration-processor-packet-receiver-stage/pom.xml index dc7fd87d24e..47e035fbe5c 100644 --- a/registration-processor/init/registration-processor-packet-receiver-stage/pom.xml +++ b/registration-processor/init/registration-processor-packet-receiver-stage/pom.xml @@ -7,11 +7,11 @@ io.mosip.registrationprocessor init - 1.2.0.1 + 1.2.0.2 registration-processor-packet-receiver-stage - 1.2.0.1 + 1.2.0.2 jar registration-processor-packet-receiver-stage diff --git a/registration-processor/init/registration-processor-registration-status-service/pom.xml b/registration-processor/init/registration-processor-registration-status-service/pom.xml index 9ac761be270..7c14b068854 100644 --- a/registration-processor/init/registration-processor-registration-status-service/pom.xml +++ b/registration-processor/init/registration-processor-registration-status-service/pom.xml @@ -8,10 +8,10 @@ io.mosip.registrationprocessor init - 1.2.0.1 + 1.2.0.2 registration-processor-registration-status-service - 1.2.0.1 + 1.2.0.2 registration-processor-registration-status-service diff --git a/registration-processor/mosip-stage-executor/pom.xml b/registration-processor/mosip-stage-executor/pom.xml index 5253f7e9848..fba37f22fa7 100644 --- a/registration-processor/mosip-stage-executor/pom.xml +++ b/registration-processor/mosip-stage-executor/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 mosip-stage-executor - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/pom.xml b/registration-processor/pom.xml index 108513e41b8..561ad2ea250 100644 --- a/registration-processor/pom.xml +++ b/registration-processor/pom.xml @@ -23,7 +23,7 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 pom registration-processor @@ -122,13 +122,13 @@ 0.1.55 - 1.2.0.1 - 1.2.0.1 - 1.2.0.1 - 1.2.0.1 - 1.2.0.1 - 1.2.0.1 - 1.2.0.1 + 1.2.0.2 + 1.2.0.2 + 1.2.0.2 + 1.2.0.2 + 1.2.0.2 + 1.2.0.2 + 1.2.0.2 1.2.0.1 diff --git a/registration-processor/post-processor/pom.xml b/registration-processor/post-processor/pom.xml index 1cb6d98e72b..8b88c85f610 100644 --- a/registration-processor/post-processor/pom.xml +++ b/registration-processor/post-processor/pom.xml @@ -6,9 +6,9 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 post-processor post-processor diff --git a/registration-processor/post-processor/registration-processor-credential-requestor-stage/pom.xml b/registration-processor/post-processor/registration-processor-credential-requestor-stage/pom.xml index 42b6df248be..e7b09ac7c62 100644 --- a/registration-processor/post-processor/registration-processor-credential-requestor-stage/pom.xml +++ b/registration-processor/post-processor/registration-processor-credential-requestor-stage/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor post-processor - 1.2.0.1 + 1.2.0.2 registration-processor-credential-requestor-stage - 1.2.0.1 + 1.2.0.2 UTF-8 UTF-8 diff --git a/registration-processor/post-processor/registration-processor-message-sender-stage/pom.xml b/registration-processor/post-processor/registration-processor-message-sender-stage/pom.xml index 7c564fced35..5b0b7c5c24c 100644 --- a/registration-processor/post-processor/registration-processor-message-sender-stage/pom.xml +++ b/registration-processor/post-processor/registration-processor-message-sender-stage/pom.xml @@ -7,11 +7,11 @@ io.mosip.registrationprocessor post-processor - 1.2.0.1 + 1.2.0.2 registration-processor-message-sender-stage - 1.2.0.1 + 1.2.0.2 UTF-8 UTF-8 diff --git a/registration-processor/post-processor/registration-processor-registration-transaction-service/pom.xml b/registration-processor/post-processor/registration-processor-registration-transaction-service/pom.xml index 035c98fe7e2..216b22e6e8f 100644 --- a/registration-processor/post-processor/registration-processor-registration-transaction-service/pom.xml +++ b/registration-processor/post-processor/registration-processor-registration-transaction-service/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor post-processor - 1.2.0.1 + 1.2.0.2 registration-processor-registration-transaction-service - 1.2.0.1 + 1.2.0.2 registration-processor-registration-transaction-service UTF-8 diff --git a/registration-processor/pre-processor/pom.xml b/registration-processor/pre-processor/pom.xml index cb84ff3c167..f0eef5fd2a2 100644 --- a/registration-processor/pre-processor/pom.xml +++ b/registration-processor/pre-processor/pom.xml @@ -7,9 +7,9 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 pre-processor pre-processor diff --git a/registration-processor/pre-processor/registration-processor-cmd-validator-stage/pom.xml b/registration-processor/pre-processor/registration-processor-cmd-validator-stage/pom.xml index 511ddba8e67..4ec27c31512 100644 --- a/registration-processor/pre-processor/registration-processor-cmd-validator-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-cmd-validator-stage/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-cmd-validator-stage - 1.2.0.1 + 1.2.0.2 registration-processor-cmd-validator-stage UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-introducer-validator-stage/pom.xml b/registration-processor/pre-processor/registration-processor-introducer-validator-stage/pom.xml index 75dd868d51d..017175a4abc 100644 --- a/registration-processor/pre-processor/registration-processor-introducer-validator-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-introducer-validator-stage/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-introducer-validator-stage - 1.2.0.1 + 1.2.0.2 registration-processor-introducer-validator-stage UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-operator-validator-stage/pom.xml b/registration-processor/pre-processor/registration-processor-operator-validator-stage/pom.xml index 7fc3d0804fe..6e2c2f6636e 100644 --- a/registration-processor/pre-processor/registration-processor-operator-validator-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-operator-validator-stage/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-operator-validator-stage - 1.2.0.1 + 1.2.0.2 registration-processor-operator-validator-stage UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-packet-classifier-stage/pom.xml b/registration-processor/pre-processor/registration-processor-packet-classifier-stage/pom.xml index d0a172f2f3f..860231f7849 100644 --- a/registration-processor/pre-processor/registration-processor-packet-classifier-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-packet-classifier-stage/pom.xml @@ -7,10 +7,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-packet-classifier-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-packet-uploader-stage/pom.xml b/registration-processor/pre-processor/registration-processor-packet-uploader-stage/pom.xml index 35cd8db8546..537c46a9d40 100644 --- a/registration-processor/pre-processor/registration-processor-packet-uploader-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-packet-uploader-stage/pom.xml @@ -9,9 +9,9 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-packet-validator-stage/pom.xml b/registration-processor/pre-processor/registration-processor-packet-validator-stage/pom.xml index d3e4625cc80..3ed0648afe1 100644 --- a/registration-processor/pre-processor/registration-processor-packet-validator-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-packet-validator-stage/pom.xml @@ -7,10 +7,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-packet-validator-stage - 1.2.0.1 + 1.2.0.2 jar UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-quality-classifier-stage/pom.xml b/registration-processor/pre-processor/registration-processor-quality-classifier-stage/pom.xml index 348c648df3d..25642aeef53 100644 --- a/registration-processor/pre-processor/registration-processor-quality-classifier-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-quality-classifier-stage/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-quality-classifier-stage - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/pre-processor/registration-processor-securezone-notification-stage/pom.xml b/registration-processor/pre-processor/registration-processor-securezone-notification-stage/pom.xml index d3ce4310014..c54aa7bcf51 100644 --- a/registration-processor/pre-processor/registration-processor-securezone-notification-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-securezone-notification-stage/pom.xml @@ -5,10 +5,10 @@ pre-processor io.mosip.registrationprocessor - 1.2.0.1 + 1.2.0.2 4.0.0 - 1.2.0.1 + 1.2.0.2 registration-processor-securezone-notification-stage diff --git a/registration-processor/pre-processor/registration-processor-supervisor-validator-stage/pom.xml b/registration-processor/pre-processor/registration-processor-supervisor-validator-stage/pom.xml index 78fd91d1ec6..b961cca92c3 100644 --- a/registration-processor/pre-processor/registration-processor-supervisor-validator-stage/pom.xml +++ b/registration-processor/pre-processor/registration-processor-supervisor-validator-stage/pom.xml @@ -6,10 +6,10 @@ io.mosip.registrationprocessor pre-processor - 1.2.0.1 + 1.2.0.2 registration-processor-supervisor-validator-stage - 1.2.0.1 + 1.2.0.2 registration-processor-supervisor-validator-stage UTF-8 diff --git a/registration-processor/qc-users-manger/pom.xml b/registration-processor/qc-users-manger/pom.xml index c18da4a005b..938b9450f09 100644 --- a/registration-processor/qc-users-manger/pom.xml +++ b/registration-processor/qc-users-manger/pom.xml @@ -5,11 +5,11 @@ qc-users-manger - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/registration-processor-bio-dedupe-service-impl/pom.xml b/registration-processor/registration-processor-bio-dedupe-service-impl/pom.xml index 46d9250b4f7..9e32ec32b69 100644 --- a/registration-processor/registration-processor-bio-dedupe-service-impl/pom.xml +++ b/registration-processor/registration-processor-bio-dedupe-service-impl/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-bio-dedupe-service-impl - 1.2.0.1 + 1.2.0.2 registration-processor-bio-dedupe-service-impl diff --git a/registration-processor/registration-processor-common-camel-bridge/dependency-reduced-pom.xml b/registration-processor/registration-processor-common-camel-bridge/dependency-reduced-pom.xml index 69896df6196..5bafa6ff4f6 100644 --- a/registration-processor/registration-processor-common-camel-bridge/dependency-reduced-pom.xml +++ b/registration-processor/registration-processor-common-camel-bridge/dependency-reduced-pom.xml @@ -3,11 +3,11 @@ registration-processor io.mosip.registrationprocessor - 1.2.0.1 + 1.2.0.2 4.0.0 registration-processor-common-camel-bridge - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/registration-processor-common-camel-bridge/pom.xml b/registration-processor/registration-processor-common-camel-bridge/pom.xml index 42de8bd5870..b022eb82eac 100644 --- a/registration-processor/registration-processor-common-camel-bridge/pom.xml +++ b/registration-processor/registration-processor-common-camel-bridge/pom.xml @@ -6,16 +6,16 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-common-camel-bridge - 1.2.0.1 + 1.2.0.2 jar io.mosip.registration.processor.camel.bridge.MosipCamelBridge 1.0.5 - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/registration-processor-core/pom.xml b/registration-processor/registration-processor-core/pom.xml index 3f7ea3481ac..83e13a1a18f 100644 --- a/registration-processor/registration-processor-core/pom.xml +++ b/registration-processor/registration-processor-core/pom.xml @@ -7,10 +7,10 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-core - 1.2.0.1 + 1.2.0.2 org.mockito diff --git a/registration-processor/registration-processor-info-storage-service/pom.xml b/registration-processor/registration-processor-info-storage-service/pom.xml index c2ab483f216..89c58b43ce5 100644 --- a/registration-processor/registration-processor-info-storage-service/pom.xml +++ b/registration-processor/registration-processor-info-storage-service/pom.xml @@ -7,10 +7,10 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-info-storage-service - 1.2.0.1 + 1.2.0.2 registration-processor-info-storage-service UTF-8 diff --git a/registration-processor/registration-processor-landing-zone/pom.xml b/registration-processor/registration-processor-landing-zone/pom.xml index ed97ba99ef2..548a82939c5 100644 --- a/registration-processor/registration-processor-landing-zone/pom.xml +++ b/registration-processor/registration-processor-landing-zone/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-landing-zone registration-processor-landing-zone - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/registration-processor-message-sender-impl/pom.xml b/registration-processor/registration-processor-message-sender-impl/pom.xml index bb35f136232..051c4d3513d 100644 --- a/registration-processor/registration-processor-message-sender-impl/pom.xml +++ b/registration-processor/registration-processor-message-sender-impl/pom.xml @@ -8,11 +8,11 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-message-sender-impl - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/registration-processor-notification-service/pom.xml b/registration-processor/registration-processor-notification-service/pom.xml index de69ecf163a..f575f89eb32 100644 --- a/registration-processor/registration-processor-notification-service/pom.xml +++ b/registration-processor/registration-processor-notification-service/pom.xml @@ -8,11 +8,11 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-notification-service - 1.2.0.1 + 1.2.0.2 UTF-8 UTF-8 diff --git a/registration-processor/registration-processor-packet-manager/pom.xml b/registration-processor/registration-processor-packet-manager/pom.xml index 7fc4de5a7a4..d053819e958 100644 --- a/registration-processor/registration-processor-packet-manager/pom.xml +++ b/registration-processor/registration-processor-packet-manager/pom.xml @@ -7,12 +7,12 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-packet-manager registration-processor-packet-manager - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/registration-processor-registration-status-service-impl/pom.xml b/registration-processor/registration-processor-registration-status-service-impl/pom.xml index 5be0a472f78..23359a18bb3 100644 --- a/registration-processor/registration-processor-registration-status-service-impl/pom.xml +++ b/registration-processor/registration-processor-registration-status-service-impl/pom.xml @@ -8,10 +8,10 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-registration-status-service-impl - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/registration-processor-rest-client/pom.xml b/registration-processor/registration-processor-rest-client/pom.xml index 9333d20cd69..eb8e1416e65 100644 --- a/registration-processor/registration-processor-rest-client/pom.xml +++ b/registration-processor/registration-processor-rest-client/pom.xml @@ -9,12 +9,12 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 registration-processor-rest-client registration-processor-rest-client - 1.2.0.1 + 1.2.0.2 UTF-8 diff --git a/registration-processor/stage-groups/pom.xml b/registration-processor/stage-groups/pom.xml index 9cd56ab6468..a512f28458a 100644 --- a/registration-processor/stage-groups/pom.xml +++ b/registration-processor/stage-groups/pom.xml @@ -7,9 +7,9 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 stage-groups stage-groups diff --git a/registration-processor/stage-groups/registration-processor-stage-group-1/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-1/pom.xml index 6fd025521cd..4a6534cb1ce 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-1/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-1/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-1 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,14 +21,14 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-packet-receiver-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-2/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-2/pom.xml index c691dc33a0e..c296c414b97 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-2/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-2/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-2 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,24 +21,24 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-quality-classifier-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-securezone-notification-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-message-sender-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-3/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-3/pom.xml index 9564721fe7d..32ff2dc7ec4 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-3/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-3/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-3 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,29 +21,29 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-abis-handler-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-abis-middleware-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-bio-dedupe-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-manual-adjudication-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-4/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-4/pom.xml index 073f75ad8e8..2ffcb8d865d 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-4/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-4/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-4 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,19 +21,19 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-biometric-authentication-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-demo-dedupe-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-5/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-5/pom.xml index 568b76c0274..1eb9ab9163b 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-5/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-5/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-5 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,34 +21,34 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-cmd-validator-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-operator-validator-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-supervisor-validator-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-introducer-validator-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-packet-validator-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-6/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-6/pom.xml index 860cf10a48e..0bde9ab1c3c 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-6/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-6/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-6 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,24 +21,24 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-packet-uploader-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-packet-classifier-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-verification-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/stage-groups/registration-processor-stage-group-7/pom.xml b/registration-processor/stage-groups/registration-processor-stage-group-7/pom.xml index ec539470a35..1a90aaba88a 100644 --- a/registration-processor/stage-groups/registration-processor-stage-group-7/pom.xml +++ b/registration-processor/stage-groups/registration-processor-stage-group-7/pom.xml @@ -5,11 +5,11 @@ io.mosip.registrationprocessor stage-groups - 1.2.0.1 + 1.2.0.2 registration-processor-stage-group-7 - 1.2.0.1 + 1.2.0.2 UTF-8 @@ -21,29 +21,29 @@ io.mosip.registrationprocessor mosip-stage-executor - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-uin-generator-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-biometric-extraction-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-finalization-stage - 1.2.0.1 + 1.2.0.2 io.mosip.registrationprocessor registration-processor-credential-requestor-stage - 1.2.0.1 + 1.2.0.2 diff --git a/registration-processor/workflow-engine/pom.xml b/registration-processor/workflow-engine/pom.xml index 49b52d674ad..536f8971db3 100644 --- a/registration-processor/workflow-engine/pom.xml +++ b/registration-processor/workflow-engine/pom.xml @@ -5,9 +5,9 @@ io.mosip.registrationprocessor registration-processor - 1.2.0.1 + 1.2.0.2 - 1.2.0.1 + 1.2.0.2 workflow-engine workflow-engine diff --git a/registration-processor/workflow-engine/registration-processor-reprocessor/pom.xml b/registration-processor/workflow-engine/registration-processor-reprocessor/pom.xml index 9b76dffed6e..050801ecc62 100644 --- a/registration-processor/workflow-engine/registration-processor-reprocessor/pom.xml +++ b/registration-processor/workflow-engine/registration-processor-reprocessor/pom.xml @@ -7,10 +7,10 @@ io.mosip.registrationprocessor workflow-engine - 1.2.0.1 + 1.2.0.2 registration-processor-reprocessor - 1.2.0.1 + 1.2.0.2 registration-processor-reprocessor UTF-8 diff --git a/registration-processor/workflow-engine/registration-processor-workflow-manager-service/pom.xml b/registration-processor/workflow-engine/registration-processor-workflow-manager-service/pom.xml index 9923d3e4dc1..2a3f47ec803 100644 --- a/registration-processor/workflow-engine/registration-processor-workflow-manager-service/pom.xml +++ b/registration-processor/workflow-engine/registration-processor-workflow-manager-service/pom.xml @@ -5,10 +5,10 @@ io.mosip.registrationprocessor workflow-engine - 1.2.0.1 + 1.2.0.2 registration-processor-workflow-manager-service - 1.2.0.1 + 1.2.0.2 registration-processor-workflow-manager-service UTF-8