2016-08-15 19:04:10 -04: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">
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2016-04-29 14:47:15 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<name>Jetty :: JMX Management</name>
|
|
|
|
<description>JMX management artifact for jetty.</description>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.jmx</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2010-06-16 13:21:50 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.jmx.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-09-20 14:42:21 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2011-01-06 13:04:58 -05:00
|
|
|
<artifactId>jetty-util</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-03-09 16:29:24 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.openpojo</groupId>
|
|
|
|
<artifactId>openpojo</artifactId>
|
|
|
|
<version>0.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
2012-08-15 15:39:53 -04:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
</project>
|