You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/04/01 08:53:38 UTC

[6/6] git commit: CAMEL-7336 Fixed camel-cometed jetty version issue

CAMEL-7336 Fixed camel-cometed jetty version issue


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/0c228d78
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0c228d78
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0c228d78

Branch: refs/heads/camel-2.12.x
Commit: 0c228d78866d28392ca7f316a429e84b811c8ffc
Parents: 0be26d9
Author: Willem Jiang <wi...@gmail.com>
Authored: Tue Apr 1 14:43:38 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Tue Apr 1 14:52:44 2014 +0800

----------------------------------------------------------------------
 components/camel-cometd/pom.xml |  5 ++++-
 parent/pom.xml                  | 10 ++++++++++
 2 files changed, 14 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0c228d78/components/camel-cometd/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-cometd/pom.xml b/components/camel-cometd/pom.xml
index abd044e..888cef5 100644
--- a/components/camel-cometd/pom.xml
+++ b/components/camel-cometd/pom.xml
@@ -60,13 +60,16 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlets</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-util</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-jmx</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.cometd.java</groupId>
             <artifactId>cometd-java-server</artifactId>
             <version>${cometd-java-server}</version>

http://git-wip-us.apache.org/repos/asf/camel/blob/0c228d78/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index c0d78be..69b3cac 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1744,6 +1744,11 @@
       </dependency>
       <dependency>
         <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-servlets</artifactId>
+        <version>${jetty-version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.jetty</groupId>
         <artifactId>jetty-security</artifactId>
         <version>${jetty-version}</version>
       </dependency>
@@ -1757,6 +1762,11 @@
         <artifactId>jetty-webapp</artifactId>
         <version>${jetty-version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-jmx</artifactId>
+        <version>${jetty-version}</version>
+      </dependency>
 
       <!-- optional jakarta http core support -->
       <dependency>