Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-01-16 22:17:27 +0000
committerJoakim Erdfelt2015-01-16 22:18:01 +0000
commit7d88ce8f27d1c6866e4a0501d1e391baa2da86db (patch)
treea5951aa50dd5ac8cca4a213b33acccadca805cf6 /tests/test-jmx/pom.xml
parent3f08e54a23a575d0a113ae4777ec842a3644368d (diff)
downloadorg.eclipse.jetty.project-7d88ce8f27d1c6866e4a0501d1e391baa2da86db.tar.gz
org.eclipse.jetty.project-7d88ce8f27d1c6866e4a0501d1e391baa2da86db.tar.xz
org.eclipse.jetty.project-7d88ce8f27d1c6866e4a0501d1e391baa2da86db.zip
457696 - JMX implementation should not be overridden by WebApp classes
+ Adding integration tests for the jmx issues
Diffstat (limited to 'tests/test-jmx/pom.xml')
-rw-r--r--tests/test-jmx/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test-jmx/pom.xml b/tests/test-jmx/pom.xml
new file mode 100644
index 0000000000..d43288e167
--- /dev/null
+++ b/tests/test-jmx/pom.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+// ========================================================================
+// Copyright (c) Webtide LLC
+//
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.apache.org/licenses/LICENSE-2.0.txt
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+ -->
+<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.tests</groupId>
+ <artifactId>tests-parent</artifactId>
+ <version>9.2.8-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>test-jmx-parent</artifactId>
+ <packaging>pom</packaging>
+ <name>Jetty Tests :: JMX Parent</name>
+ <url>http://www.eclipse.org/jetty</url>
+ <modules>
+ <module>jmx-webapp</module>
+ <module>jmx-webapp-it</module>
+ </modules>
+</project>

Back to the top