Skip to content

[MOSIP-44006] : Added surefire plugin and jacoco version#1086

Merged
Prafulrakhade merged 4 commits into
mosip:developfrom
chetankh239:MOSIP-44006-develop
Dec 12, 2025
Merged

[MOSIP-44006] : Added surefire plugin and jacoco version#1086
Prafulrakhade merged 4 commits into
mosip:developfrom
chetankh239:MOSIP-44006-develop

Conversation

@chetankh239

@chetankh239 chetankh239 commented Dec 12, 2025

Copy link
Copy Markdown
Contributor

Summary by CodeRabbit

  • Chores
    • Enhanced test execution infrastructure and added code coverage monitoring capabilities.

✏️ Tip: You can customize this high-level summary in your review settings.

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
@coderabbitai

coderabbitai Bot commented Dec 12, 2025

Copy link
Copy Markdown

Walkthrough

Added Maven Surefire plugin with test execution configuration and JaCoCo plugin for code coverage measurement. Surefire's argLine now includes JaCoCo integration, Java module opens (--add-opens), and --enable-preview flag. JaCoCo is configured with prepare-agent goal and report generation during verify phase.

Changes

Cohort / File(s) Change Summary
Maven Test & Coverage Configuration
kernel/kernel-ref-idobjectvalidator/pom.xml
Added maven-surefire-plugin with argLine configuration including jacocoArgLine, --add-opens module directives, and --enable-preview flag. Added jacoco-maven-plugin with prepare-agent and report goals for code coverage measurement during verify phase.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

  • Review plugin configurations for correct syntax and appropriate JVM options
  • Verify JaCoCo prepare-agent goal properly wires to jacocoArgLine property
  • Confirm --add-opens module directives are necessary for the test suite

Possibly related PRs

  • [MOSIP-44006] : Sonar coverage #1085: Expanded test suite implementation that prompted the addition of these Surefire and JaCoCo build configurations for test execution and coverage measurement.

Suggested reviewers

  • JanardhanBS-SyncByte
  • Prafulrakhade

Poem

🐰 A rabbit hops through Maven's domain,
Testing tools and coverage reign,
Surefire bounces, JaCoCo measures true,
Preview flags and module opens too!
Build it better, measure it all—
Quality rises, none shall fall! 📊✨

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change—adding surefire and jacoco plugin configurations to the pom.xml file for test execution and code coverage.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f2aade1 and c2e3c04.

📒 Files selected for processing (1)
  • kernel/kernel-ref-idobjectvalidator/pom.xml (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: build-maven-cache-provider-redis / maven-build
  • GitHub Check: build-maven-pre-registration-booking-service / maven-build
  • GitHub Check: build-maven-registration-processor-external-integration-service / maven-build
  • GitHub Check: build-maven-registration-processor-external-stage / maven-build
  • GitHub Check: build-maven-kernel / maven-build
🔇 Additional comments (2)
kernel/kernel-ref-idobjectvalidator/pom.xml (2)

109-115: Verify compatibility with preview features and module access.

The argLine configuration includes --enable-preview and multiple --add-opens flags for internal Java modules (java.xml, java.base). These flags can impact Java version compatibility and maintainability:

  • --enable-preview requires the target Java version to explicitly support preview features
  • --add-opens flags bypass Java module encapsulation, which may break across Java versions

Verify that:

  1. The target Java version (defined in maven.compiler.source/target) is compatible with the preview features being used
  2. The --add-opens flags are necessary for the actual application code (not just test dependencies)
  3. These flags align with the project's Java version support policy

119-141: JaCoCo plugin version property is properly defined in parent pom.

The property ${maven.jacoco.plugin.version} is correctly inherited from the parent pom kernel-ref-parent (./kernel/pom.xml line 77), where it is set to 0.8.11. No action required.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@Prafulrakhade Prafulrakhade merged commit 1b63858 into mosip:develop Dec 12, 2025
20 checks passed
chetankh239 added a commit to chetankh239/mosip-ref-impl that referenced this pull request Dec 12, 2025
* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : sonar coverage jacoco plugin

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Prafulrakhade pushed a commit that referenced this pull request Dec 12, 2025
* [MOSIP-44006] : Sonar coverage (#1085)

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Added surefire plugin and jacoco version (#1086)

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : sonar coverage jacoco plugin

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Prafulrakhade added a commit that referenced this pull request Jun 5, 2026
* MOSIP-36413 Removed childauth filter

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-36413 Removed childauth filter

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-36413 Updated readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-36413 Updated readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* [DSD-6404] updated pom version to 1.3.0-SNAPSHOT (#1021)

* Updated Pom versions for release changes

Signed-off-by: GitHub <noreply@github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Update pom.xml

Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

---------

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>
Co-authored-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>

* MOSIP-37357 Corrected readme (#1025) (#1028)

* MOSIP-37357 Corrected readme



* MOSIP-37357 Corrected java version



* MOSIP-37357 Corrected readme file



* MOSIP-37357 Corrected readme



* MOSIP-37357 Corrected readme



* MOSIP-37357 Corrected readme



* MOSIP-37357 Corrected readme



---------

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* Changing regex change soppout all the version (#1032)

Signed-off-by: khuddus shariff <khuddusshariff0022@gmail.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release (#1030)

* Updated Pom versions for release changes

Signed-off-by: GitHub <noreply@github.com>

* Changing regex change soppout all the version (#1031)

Signed-off-by: khuddus shariff <khuddusshariff0022@gmail.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release

Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>

---------

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: khuddus shariff <khuddusshariff0022@gmail.com>
Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>
Co-authored-by: khuddus shariff <khuddusshariff0022@gmail.com>
Co-authored-by: Praful Rakhade <prafulrakhade02@gmail.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release (#1035)

* Updated Pom versions for release changes

Signed-off-by: GitHub <noreply@github.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release

Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>

---------

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>
Co-authored-by: Praful Rakhade <prafulrakhade02@gmail.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release (#1036)

* [DSD-6825] platform 1.2.1.0-beta-1 release

Signed-off-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>

* [DSD-6825] platform 1.2.1.0-beta-1 release

Signed-off-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>

* Update pom.xml

Signed-off-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>

---------

Signed-off-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>

* Updated Pom version and Chart version for post-release changes (#1037)

Signed-off-by: GitHub <noreply@github.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>

* MOSIP-38954 Changed beta version to SNAPSHOT

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-38954 Used beta version for released dependencies

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-38954 Used beta version for pre-processor dependency

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37024 Fixed notification issue (#1027)

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-38954 corrected pom (#1040)

* MOSIP-38954 corrected pom

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-38954 corrected version

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

---------

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* DSD-7605 Added url and description in pom (#1046)

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* [DSD-7605] Release v1.3.0-beta.1 for Platform (#1045)

* Updated Pom versions for release changes

Signed-off-by: GitHub <noreply@github.com>

* [DSD-7605] Release v1.3.0-beta.1 for Platform

Signed-off-by: techno-467 <prafulrakhade02@gmail.com>

---------

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: techno-467 <prafulrakhade02@gmail.com>
Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>
Co-authored-by: Praful Rakhade <99539100+prafulrakhade@users.noreply.github.com>
Co-authored-by: Praful Rakhade <prafulrakhade02@gmail.com>

* DSD-7605 Release v1.3.0-beta.1 for Platform (#1049)

* DSD-7605 Release v1.3.0-beta.1 for Platform

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* DSD-7605 Release v1.3.0-beta.1 for Platform

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* DSD-7605 Release v1.3.0-beta.1 for Platform

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

---------

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* Updated Pom version and Chart version for post-release changes (#1048)

Signed-off-by: GitHub <noreply@github.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>

* [MOSIP-40012] Corrected ZGC (#1044)

* [MOSIP-40012] Corrected ZCG

Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>

* Update Dockerfile

Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>

* updated name, description and url in pom

Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>

---------

Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>
Signed-off-by: Gokulraj C <110164849+GOKULRAJ136@users.noreply.github.com>

* MOSIP-40715 change version to snaphsot (#1050)

* MOSIP-40715 change version to snaphsot

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-40715 corrected pom

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

---------

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* [MOSIP-41879] Adding password and version update

Signed-off-by: khuddus shariff <khuddusshariff0022@gmail.com>

* [MOSIP-42464] [MOSIP-41674] central sonatype migration changes

Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>

* [MOSIP-43017] Added prereg-booking helm chart

Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>
(cherry picked from commit 09fda04)

* [MOSIP-43017] Added chart-lint-publish.yml file

Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>

* MOSIP-42419 (#1055)

* MOSIP-42419

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* Updated the code based on review comments

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* resolved docker build issue

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

---------

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* [MOSIP-43613] DateUtils Changes (#1073)

Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>

* cherry-pick the helm changes to release-1.3.x

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* updated helm chart version

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* update tag version

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* fix cpu & memory

Signed-off-by: kaledOu <kaled.ouali@gmail.com>

* [DSD-9363] deleted unused folders. (#1080)

Signed-off-by: Mahammed Taheer <mohd.taheer@gmail.com>

* [MOSIP-44006] : Sonar coverage (#1085) (#1087)

* [MOSIP-44006] : Sonar coverage (#1085)

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Added surefire plugin and jacoco version (#1086)

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : Sonar coverage

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* [MOSIP-44006] : sonar coverage jacoco plugin

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

---------

Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected link

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected link

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected link

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected link

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 Corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* MOSIP-37256 corrected readme

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* Updated chart versions, image and tag for release changes (#1089)

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Prafulrakhade <99539100+Prafulrakhade@users.noreply.github.com>

* Updated Pom versions for release changes (#1090)

Signed-off-by: GitHub <noreply@github.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>

* MOSIP-44198: Fixed Redistemplate issue under the high load pool is exausted (#1092)

* Fixed Redistemplate issue under the high load pool is exausted

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* Corrected the api docs

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

---------

Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>

* [MOSIP-44198] Changed the pom version to 1.3.1-SNAPSHOT (#1093)

Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>

* Github issue-1095 corrected helm version

Signed-off-by: kameshsr <kameshsr1338@gmail.com>

* Github issue-1095 Update memory request for prereg-booking

Reduce memory request from 1500Mi to 1250Mi in values.yaml.

Signed-off-by: kameshsr <47484458+kameshsr@users.noreply.github.com>

* [DSD-10347]  1.3.1 Packet Processing Performance Tuning release (#1104)

* Updated chart versions, image and tag for release changes

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* [DSD-10347]  1.3.1 Packet Processing Performance Tuning release

Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>

---------

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>
Co-authored-by: Prafulrakhade <99539100+Prafulrakhade@users.noreply.github.com>
Co-authored-by: Prafulrakhade <prafulrakhade02@gmail.com>

* Resolves #1830 Merged the 1.3.1-rc.1 release in develop branch.

Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>

* Resolves #1830 Merged the 1.3.1-rc.1 release in develop branch.

Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>

* Resolves #1830 Merged the 1.3.1-rc.1 release in develop branch.

Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>

* Resolves #1830 Merged the 1.3.1-rc.1 release in develop branch.

Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>

---------

Signed-off-by: kameshsr <kameshsr1338@gmail.com>
Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>
Signed-off-by: khuddus shariff <khuddusshariff0022@gmail.com>
Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com>
Signed-off-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>
Signed-off-by: techno-467 <prafulrakhade02@gmail.com>
Signed-off-by: GOKULRAJ136 <110164849+GOKULRAJ136@users.noreply.github.com>
Signed-off-by: Gokulraj C <110164849+GOKULRAJ136@users.noreply.github.com>
Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com>
Signed-off-by: Dhanendra Sahu <dhanendra.tech@gmail.com>
Signed-off-by: kaledOu <kaled.ouali@gmail.com>
Signed-off-by: Mahammed Taheer <mohd.taheer@gmail.com>
Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Ashok Kumar Sharma <ashok@mosip.io>
Signed-off-by: kameshsr <47484458+kameshsr@users.noreply.github.com>
Co-authored-by: kameshsr <kameshsr1338@gmail.com>
Co-authored-by: Chandra Keshav Mishra <chandrakeshavmishra@gmail.com>
Co-authored-by: Prafulrakhade <Prafulrakhade@users.noreply.github.com>
Co-authored-by: Praful Rakhade <99539100+Prafulrakhade@users.noreply.github.com>
Co-authored-by: kameshsr <47484458+kameshsr@users.noreply.github.com>
Co-authored-by: khuddus shariff <khuddusshariff0022@gmail.com>
Co-authored-by: Praful Rakhade <prafulrakhade02@gmail.com>
Co-authored-by: VSIVAKALYAN <103260988+VSIVAKALYAN@users.noreply.github.com>
Co-authored-by: Gokulraj C <110164849+GOKULRAJ136@users.noreply.github.com>
Co-authored-by: Dhanendra Sahu <60607841+dhanendra06@users.noreply.github.com>
Co-authored-by: Dhanendra Sahu <dhanendra.tech@gmail.com>
Co-authored-by: kaledOu <kaled.ouali@gmail.com>
Co-authored-by: mahammedtaheer <57249563+mahammedtaheer@users.noreply.github.com>
Co-authored-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants