Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2014-10-13 14:35:12 +0000
committerJoakim Erdfelt2014-10-13 14:35:12 +0000
commit8d85940077f55ca8390b4fbd486081c009d2af8b (patch)
tree7ec26819f62b230dc3425f77cb7ec57071f78b5d /jetty-servlets
parent1511be8c97a91af6e4dd4327378dc05bb34440bc (diff)
downloadorg.eclipse.jetty.project-8d85940077f55ca8390b4fbd486081c009d2af8b.tar.gz
org.eclipse.jetty.project-8d85940077f55ca8390b4fbd486081c009d2af8b.tar.xz
org.eclipse.jetty.project-8d85940077f55ca8390b4fbd486081c009d2af8b.zip
Moving HttpTester to "tests" scoped jetty-http artifact.
+ HttpTester, a testing class, was used by jetty-servlets, embedded-jetty-examples, and test-integration, all from those testing scopes. Moved the HttpTester into the pre-existing jetty-http "tests" classified artifact.
Diffstat (limited to 'jetty-servlets')
-rw-r--r--jetty-servlets/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml
index bdc9c25a5d..574b964b97 100644
--- a/jetty-servlets/pom.xml
+++ b/jetty-servlets/pom.xml
@@ -109,6 +109,13 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-http</artifactId>
+ <version>${project.version}</version>
+ <classifier>tests</classifier>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>

Back to the top