Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.99 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.99 KB

Consumer Common Library

Tests Release Publish conventionalcommits

This repository contains shared classes and modules for the Explorer and LedgerSync projects, facilitating code reuse and consistency across the projects.

👉 Check the explorer umbrella repository to understand how the microservices work together

🧪 Test Reports

To ensure the stability and reliability of this project, unit and mutation tests have been implemented. By clicking on the links below, you can access the detailed test reports and review the outcomes of the tests performed.

📊 Coverage Report

📊 Mutation Report

Getting Started

To make use of this project, you need to add the following lines to the pom.xml file.

<repositories>
    ...
    <repository>
        <id>gitlab-private-registry</id>
        <url>https://pro.gitlab.metadata.dev.cf-deployments.org/api/v4/projects/2/packages/maven</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
<dependency>
    <groupId>org.cardanofoundation.explorer</groupId>
    <artifactId>consumer-common</artifactId>
    <version>0.1.7</version>
</dependency>