Skip to content

Mosip 32461 #1871

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
260 changes: 130 additions & 130 deletions .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,131 +1,131 @@
name: Maven Package upon a push

on:
release:
types: [published]
pull_request:
types: [opened, reopened, synchronize]

workflow_dispatch:
inputs:
message:
description: 'Message for manually triggering'
required: false
default: 'Triggered for Updates'
type: string
push:
branches:
- '!release-branch'
- release-1*
- master
- 1.*
- develop

jobs:
build-maven-registration:
uses: mosip/kattu/.github/workflows/maven-build.yml@master
with:
SERVICE_LOCATION: ./registration-processor
BUILD_ARTIFACT: registration
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

publish_to_nexus:
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}"
needs: build-maven-registration
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master
with:
SERVICE_LOCATION: ./registration-processor
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_URL: ${{ secrets.OSSRH_SNAPSHOT_URL }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

build-dockers:
needs: build-maven-registration
strategy:
matrix:
include:
- SERVICE_LOCATION: 'registration-processor/post-processor/registration-processor-registration-transaction-service'
SERVICE_NAME: 'registration-processor-registration-transaction-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-1'
SERVICE_NAME: 'registration-processor-stage-group-1'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-2'
SERVICE_NAME: 'registration-processor-stage-group-2'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-3'
SERVICE_NAME: 'registration-processor-stage-group-3'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-4'
SERVICE_NAME: 'registration-processor-stage-group-4'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-5'
SERVICE_NAME: 'registration-processor-stage-group-5'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-6'
SERVICE_NAME: 'registration-processor-stage-group-6'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-7'
SERVICE_NAME: 'registration-processor-stage-group-7'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/core-processor/registration-processor-abis'
SERVICE_NAME: 'registration-processor-abis'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-reprocessor'
SERVICE_NAME: 'registration-processor-reprocessor'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-dmz-packet-server'
SERVICE_NAME: 'registration-processor-dmz-packet-server'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-registration-status-service'
SERVICE_NAME: 'registration-processor-registration-status-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-notification-service'
SERVICE_NAME: 'registration-processor-notification-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-landing-zone'
SERVICE_NAME: 'registration-processor-landing-zone'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-workflow-manager-service'
SERVICE_NAME: 'registration-processor-workflow-manager-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-common-camel-bridge'
SERVICE_NAME: 'registration-processor-common-camel-bridge'
BUILD_ARTIFACT: 'registration'

fail-fast: false
name: ${{ matrix.SERVICE_NAME }}
uses: mosip/kattu/.github/workflows/docker-build.yml@master
with:
SERVICE_LOCATION: ${{ matrix.SERVICE_LOCATION }}
SERVICE_NAME: ${{ matrix.SERVICE_NAME }}
BUILD_ARTIFACT: ${{ matrix.BUILD_ARTIFACT || false }}
secrets:
DEV_NAMESPACE_DOCKER_HUB: ${{ secrets.DEV_NAMESPACE_DOCKER_HUB }}
ACTOR_DOCKER_HUB: ${{ secrets.ACTOR_DOCKER_HUB }}
RELEASE_DOCKER_HUB: ${{ secrets.RELEASE_DOCKER_HUB }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}


sonar_analysis:
needs: build-maven-registration
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master
with:
SERVICE_LOCATION: ./registration-processor
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
name: Maven Package upon a push
on:
release:
types: [published]
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
inputs:
message:
description: 'Message for manually triggering'
required: false
default: 'Triggered for Updates'
type: string
push:
branches:
- '!release-branch'
- release-1*
- master
- 1.*
- develop*
jobs:
build-maven-registration:
uses: mosip/kattu/.github/workflows/maven-build.yml@master-java21
with:
SERVICE_LOCATION: ./registration-processor
BUILD_ARTIFACT: registration
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
publish_to_nexus:
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}"
needs: build-maven-registration
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master-java21
with:
SERVICE_LOCATION: ./registration-processor
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_URL: ${{ secrets.OSSRH_SNAPSHOT_URL }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
build-dockers:
needs: build-maven-registration
strategy:
matrix:
include:
- SERVICE_LOCATION: 'registration-processor/post-processor/registration-processor-registration-transaction-service'
SERVICE_NAME: 'registration-processor-registration-transaction-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-1'
SERVICE_NAME: 'registration-processor-stage-group-1'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-2'
SERVICE_NAME: 'registration-processor-stage-group-2'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-3'
SERVICE_NAME: 'registration-processor-stage-group-3'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-4'
SERVICE_NAME: 'registration-processor-stage-group-4'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-5'
SERVICE_NAME: 'registration-processor-stage-group-5'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-6'
SERVICE_NAME: 'registration-processor-stage-group-6'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-7'
SERVICE_NAME: 'registration-processor-stage-group-7'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/core-processor/registration-processor-abis'
SERVICE_NAME: 'registration-processor-abis'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-reprocessor'
SERVICE_NAME: 'registration-processor-reprocessor'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-dmz-packet-server'
SERVICE_NAME: 'registration-processor-dmz-packet-server'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-registration-status-service'
SERVICE_NAME: 'registration-processor-registration-status-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-notification-service'
SERVICE_NAME: 'registration-processor-notification-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-landing-zone'
SERVICE_NAME: 'registration-processor-landing-zone'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-workflow-manager-service'
SERVICE_NAME: 'registration-processor-workflow-manager-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-common-camel-bridge'
SERVICE_NAME: 'registration-processor-common-camel-bridge'
BUILD_ARTIFACT: 'registration'
fail-fast: false
name: ${{ matrix.SERVICE_NAME }}
uses: mosip/kattu/.github/workflows/docker-build.yml@master-java21
with:
SERVICE_LOCATION: ${{ matrix.SERVICE_LOCATION }}
SERVICE_NAME: ${{ matrix.SERVICE_NAME }}
BUILD_ARTIFACT: ${{ matrix.BUILD_ARTIFACT || false }}
secrets:
DEV_NAMESPACE_DOCKER_HUB: ${{ secrets.DEV_NAMESPACE_DOCKER_HUB }}
ACTOR_DOCKER_HUB: ${{ secrets.ACTOR_DOCKER_HUB }}
RELEASE_DOCKER_HUB: ${{ secrets.RELEASE_DOCKER_HUB }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
sonar_analysis:
needs: build-maven-registration
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master-java21
with:
SERVICE_LOCATION: ./registration-processor
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
56 changes: 28 additions & 28 deletions registration-processor/core-processor/pom.xml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<parent>
<groupId>io.mosip.registrationprocessor</groupId>
<artifactId>registration-processor</artifactId>
<version>1.2.1-SNAPSHOT</version>
</parent>
<version>1.2.1-SNAPSHOT</version>
<artifactId>core-processor</artifactId>
<name>core-processor</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>registration-processor-demo-dedupe-stage</module>
<module>registration-processor-bio-dedupe-stage</module>
<module>registration-processor-uin-generator-stage</module>
<module>registration-processor-abis</module>
<module>registration-processor-manual-adjudication-stage</module>
<module>registration-processor-abis-handler-stage</module>
<module>registration-processor-abis-middleware-stage</module>
<module>registration-processor-biometric-authentication-stage</module>
<module>registration-processor-biometric-extraction-stage</module>
<module>registration-processor-finalization-stage</module>
<module>registration-processor-verification-stage</module>
</modules>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<parent>
<groupId>io.mosip.registrationprocessor</groupId>
<artifactId>registration-processor</artifactId>
<version>1.2.1-java21-SNAPSHOT</version>
</parent>
<version>1.2.1-java21-SNAPSHOT</version>
<artifactId>core-processor</artifactId>
<name>core-processor</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>registration-processor-demo-dedupe-stage</module>
<module>registration-processor-bio-dedupe-stage</module>
<module>registration-processor-uin-generator-stage</module>
<module>registration-processor-abis</module>
<module>registration-processor-manual-adjudication-stage</module>
<module>registration-processor-abis-handler-stage</module>
<module>registration-processor-abis-middleware-stage</module>
<module>registration-processor-biometric-authentication-stage</module>
<module>registration-processor-biometric-extraction-stage</module>
<module>registration-processor-finalization-stage</module>
<module>registration-processor-verification-stage</module>
</modules>
</project>
Loading
Loading