coronamq-metrics
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.jklingsporn</groupId> <artifactId>coronamq-metrics</artifactId> <version>0.2</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"> <parent> <artifactId>coronamq</artifactId> <groupId>io.github.jklingsporn</groupId> <version>0.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>coronamq-metrics</artifactId> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <micrometer-registry-prometheus.version>1.5.2</micrometer-registry-prometheus.version> </properties> <dependencies> <dependency> <groupId>io.github.jklingsporn</groupId> <artifactId>coronamq-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-micrometer-metrics</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> <version>${micrometer-registry-prometheus.version}</version> </dependency> </dependencies> </project>