jvmstat
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.prometheus.client.utility</groupId> <artifactId>jvmstat</artifactId> <version>0.0.10</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>io.prometheus.client.utility</groupId> <artifactId>jvmstat</artifactId> <parent> <groupId>io.prometheus.client</groupId> <artifactId>utility</artifactId> <version>0.0.10</version> </parent> <name>Prometheus Java Instrumentation Helpers for Hotspot VM's jvmstat</name> <url>http://github.com/prometheus/client_java</url> <description> The Prometheus Java Instrumentation Helpers for Hotspot VM's jvmstat </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:prometheus/client_java.git</connection> <developerConnection>scm:git:git@github.com:prometheus/client_java.git</developerConnection> <url>git@github.com:prometheus/client_java.git</url> <tag>parent-0.0.10</tag> </scm> <developers> <developer> <id>mtp</id> <name>Matt T. Proud</name> <email>matt.proud@gmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>io.prometheus</groupId> <artifactId>client</artifactId> <version>0.0.10</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <linksource>true</linksource> </configuration> <executions> <execution> <id>generate-javadoc-site-report</id> <phase>site</phase> <goals> <goal>javadoc</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <!-- Before fiddling with this profile settings here, please carefully read the Javadoc contained in JvmstatMonitor. It explains that the use of this Maven module requires the HotSpot/OpenJDK tools.jar to be included in the classpath. Since this is required for use, it is also required for compile-time validations of this module; thusly, we have included it here. --> <id>default-tools.jar</id> <activation> <property> <name>java.vendor</name> <value>Oracle Corporation</value> </property> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.4.2</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> </profiles> </project>