purej-vminspect
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.purej</groupId>
<artifactId>purej-vminspect</artifactId>
<version>2.1.1</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.purej</groupId>
<artifactId>purej-parent</artifactId>
<version>1.7</version>
</parent>
<artifactId>purej-vminspect</artifactId>
<version>2.1.1</version>
<packaging>jar</packaging>
<name>PureJ VM Inspection</name>
<description>An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface</description>
<properties>
<!-- Jdk Version - Jakarta-EE and spring-boot 3 requires java 17 minimum! -->
<jdkVersion>17</jdkVersion>
<module.name>purej.vminspect</module.name>
<jetty.version>12.0.14</jetty.version>
<junit.version>5.10.5</junit.version>
</properties>
<scm>
<connection>scm:git:git://github.com/purej/purej-vminspect.git</connection>
<url>http://github.com/purej/purej-vminspect</url>
</scm>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
</dependency>
<!-- By default, VmInspect uses RRD4J as round-robin-db implementation, see https://github.com/rrd4j/rrd4j -->
<dependency>
<groupId>org.rrd4j</groupId>
<artifactId>rrd4j</artifactId>
<version>3.8.2</version>
</dependency>
<!-- Optionally JRobin as RRD implementation, must be provided by user -->
<dependency>
<groupId>com.purej</groupId>
<artifactId>jrobin</artifactId>
<version>1.7.1</version>
<optional>true</optional>
</dependency>
<!-- Servlet spec must be provided by users -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<!-- Optional spring-boot / annotation dependencies, only if using the VmInspectionRegistrationBean -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>3.3.5</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>