2017-06-06 08:55:12 -07:00
|
|
|
<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>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2020-11-20 16:05:27 -06:00
|
|
|
<version>9.4.36-SNAPSHOT</version>
|
2017-06-06 08:55:12 -07:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<name>Jetty :: JMX Management</name>
|
|
|
|
<description>JMX management artifact for jetty.</description>
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.jmx</bundle-symbolic-name>
|
2020-12-11 11:47:26 +10:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.jmx.*</spotbugs.onlyAnalyze>
|
2017-06-06 08:55:12 -07:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2017-08-08 09:47:04 -07:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.openpojo</groupId>
|
|
|
|
<artifactId>openpojo</artifactId>
|
2020-11-10 14:27:44 +10:00
|
|
|
<version>0.8.13</version>
|
2017-08-08 09:47:04 -07:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-06 08:55:12 -07:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|