resiliencia-metrics
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-metrics</artifactId>
<version>1.0.0-beta.1</version>
</dependency><?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>
<parent>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia</artifactId>
<version>1.0.0-beta.1</version>
</parent>
<artifactId>resiliencia-metrics</artifactId>
<packaging>jar</packaging>
<name>Resiliencia :: Metrics</name>
<description>Vendor-neutral metrics abstraction for resiliencia patterns (counter, gauge, timer) with a
no-op default implementation. Zero external dependencies.
</description>
<scm>
<connection>scm:git:https://github.com/tec-eli/resiliencia.git</connection>
<developerConnection>scm:git:https://github.com/tec-eli/resiliencia.git</developerConnection>
<url>https://github.com/tec-eli/resiliencia</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-patterns</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-compose</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.14.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.14.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>