nmt-metrics
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.glandais-eptica</groupId> <artifactId>nmt-metrics</artifactId> <version>2.0.5</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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent> <groupId>io.github.glandais-eptica</groupId> <artifactId>nmt-metrics</artifactId> <version>2.0.5</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>NMT tools to expose JVM native memory tracking informations in Micrometer</description> <url>https://github.com/glandais-eptica/nmt-metrics</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Marek Cabaj</name> <url>https://github.com/mcabaj</url> </developer> <developer> <name>Gabriel Landais</name> <url>https://github.com/glandais-eptica</url> </developer> </developers> <scm> <url>http://github.com/glandais-eptica/nmt-metrics</url> <connection>scm:git:git://github.com/glandais-eptica/nmt-metrics.git</connection> <developerConnection>scm:git:git@github.com:glandais-eptica/nmt-metrics.git</developerConnection> <tag>nmt-metrics-2.0.5</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-core</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>