MVN

javax.management : jmxremote

Maven & Gradle

Feb 09, 2006
2 usages

JMX(TM) Remote API RI · Java Management Extensions (JMX) technology provides the tools for building distributed, Web-based, modular and dynamic solutions for managing and monitoring devices, applications, and service-driven networks. By design, this standard is suitable for adapting legacy systems, implementing new management and monitoring solutions, and plugging into those of the future.

<dependency>
    <groupId>javax.management</groupId>
    <artifactId>jmxremote</artifactId>
    <version>1.0.1_04</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of javax.management : jmxremote to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1_04

All Versions

Choose a version of javax.management : jmxremote to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
jmxremote-1.0.1_04

How to add a dependency to Maven

Add the following javax.management : jmxremote maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>javax.management</groupId>
    <artifactId>jmxremote</artifactId>
    <version>1.0.1_04</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following javax.management : jmxremote gradle dependency to your build.gradle file:

implementation 'javax.management:jmxremote:1.0.1_04'

Gradle Kotlin DSL: Add the following javax.management : jmxremote gradle kotlin dependency to your build.gradle.kts file:

implementation("javax.management:jmxremote:1.0.1_04")

How to add a dependency to SBT Scala

SBT Scala: Add the following javax.management : jmxremote sbt scala dependency to your build.sbt file:

libraryDependencies += "javax.management" % "jmxremote" % "1.0.1_04"

Advertisement