jmxutils.
Exporting JMX mbeans made easy.
Here is the list of declaration for jmxutils. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.weakref</groupId> <artifactId>jmxutils</artifactId> <version>1.8</version> </dependency>
If you think this Maven repository POM file listing for jmxutils is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The jmxutils-1.8 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Testing | testng 5.14.2 TestNG is a testing framework. | 8 |
Inversion of Control | guice-multibindings 2.0 Tools injecting collections of bound values | 7 |
The following plugins are used in the jmxutils-1.8.jar
The following packages are defined in the jmxutils-1.8.jar
org.weakref.jmx org.weakref.jmx.com.thoughworks.paranamer org.weakref.jmx.guice
Here is the content of the POM file.
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.weakref</groupId> <artifactId>jmxutils</artifactId> <name>jmxutils</name> <version>1.8</version> <description>Exporting JMX mbeans made easy</description> <url>http://github.com/martint/jmxutils</url> <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/martint/jmxutils.git</connection> <developerConnection>scm:git:git@github.com:martint/jmxutils.git</developerConnection> <url>http://github.com/martint/jmxutils/tree/master</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>create-source-jar</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.thoughtworks.paranamer:paranamer</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.thoughtworks.paranamer</pattern> <shadedPattern>org.weakref.jmx.com.thoughworks.paranamer</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.14.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.beanshell</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-multibindings</artifactId> <version>2.0</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-releases</id> <name>Sonatype Releases Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-snapshots</id> <name>Sonatype Snapshots Repository</name> <url>http://oss.sonatype.org/content/repositories/github-snapshots</url> </snapshotRepository> </distributionManagement> </project>