1<?xml version="1.0" encoding="UTF-8"?>
2<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">
3
4  <modelVersion>4.0.0</modelVersion>
5
6  <parent>
7    <groupId>com.google.inject.extensions</groupId>
8    <artifactId>extensions-parent</artifactId>
9    <version>4.0</version>
10  </parent>
11
12  <artifactId>guice-jmx</artifactId>
13
14  <name>Google Guice - Extensions - JMX</name>
15
16  <build>
17    <plugins>
18      <plugin>
19        <artifactId>maven-surefire-plugin</artifactId>
20        <configuration>
21          <skip>true</skip> <!-- Test is not actually a unit test. -->
22        </configuration>
23      </plugin>
24    </plugins>
25  </build>
26</project>
27