MVN

org.apache.excalibur.components : excalibur-monitor

Maven & Gradle

Feb 15, 2007

Excalibur Monitor · Avalon Excalibur's resource management code allows you to be notified when a resource has changed. There are two methods of resource management: active and passive. Passive resource management acts as a holder for resources, and after the resource has been modified through it's normal API, notification goes to all listeners. Active resource management does the same, but it also polls the resources periodically to see if the resource was modified through an external method. Active resource management is perfect for monitoring files because they can be modified by external programs, and your program will be notified when the change occurs instead of constantly polling it.

<dependency>
    <groupId>org.apache.excalibur.components</groupId>
    <artifactId>excalibur-monitor</artifactId>
    <version>2.2.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.excalibur.components : excalibur-monitor to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2.1

All Versions

Choose a version of org.apache.excalibur.components : excalibur-monitor to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
excalibur-monitor-2.2.1

How to add a dependency to Maven

Add the following org.apache.excalibur.components : excalibur-monitor maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.excalibur.components</groupId>
    <artifactId>excalibur-monitor</artifactId>
    <version>2.2.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.excalibur.components : excalibur-monitor gradle dependency to your build.gradle file:

implementation 'org.apache.excalibur.components:excalibur-monitor:2.2.1'

Gradle Kotlin DSL: Add the following org.apache.excalibur.components : excalibur-monitor gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.excalibur.components:excalibur-monitor:2.2.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.excalibur.components : excalibur-monitor sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.excalibur.components" % "excalibur-monitor" % "2.2.1"