|
|
f63166 |
From 5f1902e3e0003d989e29578d6c40a5e936fcb65a Mon Sep 17 00:00:00 2001
|
|
|
f63166 |
From: Michal Srb <msrb@redhat.com>
|
|
|
f63166 |
Date: Fri, 22 Feb 2013 11:13:23 +0100
|
|
|
f63166 |
Subject: [PATCH] Fix jetty dependencies
|
|
|
f63166 |
|
|
|
f63166 |
---
|
|
|
f63166 |
pom.xml | 21 +++++++++++++++++----
|
|
|
f63166 |
1 file changed, 17 insertions(+), 4 deletions(-)
|
|
|
f63166 |
|
|
|
f63166 |
diff --git a/pom.xml b/pom.xml
|
|
|
f63166 |
index 9e99e5f..267cc91 100644
|
|
|
f63166 |
--- a/pom.xml
|
|
|
f63166 |
+++ b/pom.xml
|
|
|
f63166 |
@@ -403,18 +403,31 @@ under the License.
|
|
|
f63166 |
</dependency>
|
|
|
f63166 |
|
|
|
f63166 |
<dependency>
|
|
|
f63166 |
- <groupId>org.mortbay.jetty</groupId>
|
|
|
f63166 |
- <artifactId>jetty</artifactId>
|
|
|
f63166 |
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
f63166 |
+ <artifactId>jetty-server</artifactId>
|
|
|
f63166 |
<version>6.1.25</version>
|
|
|
f63166 |
</dependency>
|
|
|
f63166 |
+
|
|
|
f63166 |
+ <dependency>
|
|
|
f63166 |
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
f63166 |
+ <artifactId>jetty-webapp</artifactId>
|
|
|
f63166 |
+ <version>6.1.25</version>
|
|
|
f63166 |
+ </dependency>
|
|
|
f63166 |
+
|
|
|
f63166 |
+ <dependency>
|
|
|
f63166 |
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
f63166 |
+ <artifactId>jetty-servlet</artifactId>
|
|
|
f63166 |
+ <version>6.1.25</version>
|
|
|
f63166 |
+ </dependency>
|
|
|
f63166 |
+
|
|
|
f63166 |
<dependency>
|
|
|
f63166 |
- <groupId>org.mortbay.jetty</groupId>
|
|
|
f63166 |
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
f63166 |
<artifactId>jetty-util</artifactId>
|
|
|
f63166 |
<version>6.1.25</version>
|
|
|
f63166 |
</dependency>
|
|
|
f63166 |
|
|
|
f63166 |
<dependency>
|
|
|
f63166 |
- <groupId>org.mortbay.jetty</groupId>
|
|
|
f63166 |
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
f63166 |
<artifactId>jetty-client</artifactId>
|
|
|
f63166 |
<version>6.1.25</version>
|
|
|
f63166 |
<scope>test</scope>
|
|
|
f63166 |
--
|
|
|
f63166 |
1.8.1.2
|
|
|
f63166 |
|