memory-monitor.
Code for monitoring memory/swap usage.
Here is the list of declaration for memory-monitor. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet.hudson</groupId> <artifactId>memory-monitor</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for memory-monitor is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The memory-monitor-1.3 has 2 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 |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following table lists the most popular artifacts which are depending on memory-monitor-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Framework | hudson-core 1.379 Contains the core Hudson code and view files to render HTML. | 5 |
Web Framework | hudson-core 2.1.0 Contains the core Hudson code and view files to render HTML. | 6 |
The following plugins are used in the memory-monitor-1.3.jar
The following packages are defined in the memory-monitor-1.3.jar
org.jvnet.hudson
Here is the content of the POM file.
<?xml version="1.0"?><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"> <parent> <artifactId>extras</artifactId> <groupId>org.jvnet.hudson</groupId> <version>1.7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.hudson</groupId> <artifactId>memory-monitor</artifactId> <version>1.3</version> <name>memory-monitor</name> <description>Code for monitoring memory/swap usage</description> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.jvnet.hudson.MemoryMonitor</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.jvnet.hudson.MemoryMonitor</mainClass> </manifest> </archive> </configuration> <executions> <execution> <goals> <goal>attached</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>3.0.3-patch-1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/memory-monitor-1.3</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/memory-monitor-1.3</developerConnection> <url>https://hudson.dev.java.net/source/browse/hudson/tags/memory-monitor-1.3</url> </scm> </project>