heroku-java-metrics-agent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.heroku.agent</groupId> <artifactId>heroku-java-metrics-agent</artifactId> <version>4.0.4</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> <groupId>com.heroku.agent</groupId> <artifactId>heroku-java-metrics-agent</artifactId> <version>4.0.4</version> <packaging>jar</packaging> <name>heroku-java-metrics-agent</name> <description> A lightweight (no dependencies, ~22KiB) JVM agent that is used to collect metrics for Heroku's JVM runtime metrics feature. </description> <url>https://github.com/heroku/heroku-java-metrics-agent</url> <licenses> <license> <name>MIT</name> <url>https://github.com/heroku/heroku-java-metrics-agent/blob/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <url>https://github.com/heroku/heroku-java-metrics-agent</url> <connection>scm:git:git://github.com/heroku/heroku-java-metrics-agent.git</connection> <developerConnection>scm:git:ssh://git@github.com/heroku/heroku-java-metrics-agent.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <id>malax</id> <name>Manuel Fuchs</name> <email>manuel.fuchs@salesforce.com</email> </developer> </developers> <mailingLists> <mailingList> <name>Heroku Java Metrics Agent issues</name> <archive>https://github.com/heroku/heroku-java-metrics-agent/issues?state=closed</archive> <subscribe>https://github.com/heroku/heroku-java-metrics-agent/toggle_watch</subscribe> <unsubscribe>https://github.com/heroku/heroku-java-metrics-agent/toggle_watch</unsubscribe> <post>https://github.com/heroku/heroku-java-metrics-agent/issues/new</post> </mailingList> </mailingLists> <issueManagement> <system>GitHub</system> <url>https://github.com/heroku/heroku-java-metrics-agent/issues/new</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.18.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>heroku-java-metrics-agent</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <source>7</source> <target>7</target> <release>7</release> <testSource>11</testSource> <testTarget>11</testTarget> <testRelease>11</testRelease> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifestEntries> <Premain-Class>com.heroku.agent.metrics.MetricsAgent</Premain-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-source</id> <phase>deploy</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadoc</id> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> <configuration> <source>1.7</source> <doclint>none</doclint> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.44.5</version> <configuration> <java> <googleJavaFormat> <version>1.15.0</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> </googleJavaFormat> </java> </configuration> </plugin> </plugins> </build> </project>