blob: 6e2babb5b5c7f729821b45084e6fdcfbf05252a4 [file] [log] [blame]
Joakim Erdfelt7d88ce82015-01-16 15:17:27 -07001<?xml version="1.0" encoding="UTF-8"?>
Joakim Erdfelt7d88ce82015-01-16 15:17:27 -07002<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 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.eclipse.jetty.tests</groupId>
6 <artifactId>test-jmx-parent</artifactId>
Joakim Erdfelt9cf0e342015-10-07 15:41:32 -07007 <version>9.4.0-SNAPSHOT</version>
Joakim Erdfelt7d88ce82015-01-16 15:17:27 -07008 </parent>
9 <artifactId>jmx-webapp</artifactId>
10 <packaging>war</packaging>
11 <name>Jetty Tests :: JMX :: WebApp</name>
12 <url>http://www.eclipse.org/jetty</url>
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <bundle-symbolic-name>${project.groupId}.jmx.webapp</bundle-symbolic-name>
16 </properties>
17 <dependencies>
18 <dependency>
19 <groupId>javax.servlet</groupId>
20 <artifactId>javax.servlet-api</artifactId>
21 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>org.eclipse.jetty</groupId>
25 <artifactId>jetty-jmx</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 </dependencies>
29 <build>
30 <finalName>jmx-webapp</finalName>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-deploy-plugin</artifactId>
35 <configuration>
36 <!-- DO NOT DEPLOY (or Release) -->
37 <skip>true</skip>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-war-plugin</artifactId>
43 <configuration>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>