2016-08-15 23:04:10 +00: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 21:07:27 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2019-07-12 06:54:21 +10:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2009-03-24 21:07:27 +00: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 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.jmx</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-24 21:07:27 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-12-03 13:25:00 +10:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2019-06-24 17:42:39 +02:00
|
|
|
@{argLine} ${jetty.surefire.argLine} --add-opens org.eclipse.jetty.jmx/org.eclipse.jetty.jmx=ALL-UNNAMED --add-opens org.eclipse.jetty.jmx/org.eclipse.jetty.util.log.jmx=ALL-UNNAMED
|
2018-12-03 13:25:00 +10:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.jmx.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-24 21:07:27 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-09-20 11:42:21 -07:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2011-01-06 18:04:58 +00:00
|
|
|
<artifactId>jetty-util</artifactId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-03-10 08:29:24 +11:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.openpojo</groupId>
|
|
|
|
<artifactId>openpojo</artifactId>
|
|
|
|
<version>0.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependencies>
|
2012-08-15 14:39:53 -05:00
|
|
|
|
2009-03-24 21:07:27 +00:00
|
|
|
</project>
|