Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2014-10-29 16:50:32 +0000
committerJoakim Erdfelt2014-10-29 16:50:32 +0000
commitb314bfcc94b17b18badeb249f44c4b814f37aea5 (patch)
treef5b419a86531f692d08998f55abf2d6f1776d596 /jetty-servlets
parent8a72a153a1280aad6390f27372b5a8af8127cc82 (diff)
downloadorg.eclipse.jetty.project-b314bfcc94b17b18badeb249f44c4b814f37aea5.tar.gz
org.eclipse.jetty.project-b314bfcc94b17b18badeb249f44c4b814f37aea5.tar.xz
org.eclipse.jetty.project-b314bfcc94b17b18badeb249f44c4b814f37aea5.zip
446944 - ServletTester and HttpTester should be in <classifier>tests</classifier>
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. Moving ServletTester to "tests" scoped jetty-servlet artifact. + ServletTester, a testing class, was used by jetty-servlets, test-integration, and test-jetty-webapp. This move puts this class in the pre-existing jetty-servlet "tests" classified artifact.
Diffstat (limited to 'jetty-servlets')
-rw-r--r--jetty-servlets/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml
index a8c2ee8b6a..1108097d4b 100644
--- a/jetty-servlets/pom.xml
+++ b/jetty-servlets/pom.xml
@@ -63,6 +63,20 @@
<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</groupId>
+ <artifactId>jetty-servlet</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