MVN

org.jmonit : jmonit

Maven & Gradle

Dec 07, 2007

jMonit · jMonit is a monitoring toolkit for java application. It provides a simple API to instrument the application, and an extensible infrastructure to gather monitored datas and build monitoring reports. On JEE applications, it provides a web UI out of the box for monitoring and tweaking the application.

<dependency>
    <groupId>org.jmonit</groupId>
    <artifactId>jmonit</artifactId>
    <version>1.0-alpha-2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.jmonit : jmonit to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0-alpha-2
  • Latest Alpha: 1.0-alpha-2

All Versions

Choose a version of org.jmonit : jmonit to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
jmonit-1.0-alpha-2
jmonit-1.0-alpha-1

How to add a dependency to Maven

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

<dependency>
    <groupId>org.jmonit</groupId>
    <artifactId>jmonit</artifactId>
    <version>1.0-alpha-2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.jmonit : jmonit gradle dependency to your build.gradle file:

implementation 'org.jmonit:jmonit:1.0-alpha-2'

Gradle Kotlin DSL: Add the following org.jmonit : jmonit gradle kotlin dependency to your build.gradle.kts file:

implementation("org.jmonit:jmonit:1.0-alpha-2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.jmonit : jmonit sbt scala dependency to your build.sbt file:

libraryDependencies += "org.jmonit" % "jmonit" % "1.0-alpha-2"

Advertisement