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:34 UTC

[2/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/5b2d3d64
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5b2d3d64
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5b2d3d64

Branch: refs/heads/master
Commit: 5b2d3d64749de737cd20c81e87b139475c36e9e9
Parents: 2ea69fc
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:43:38 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/5b2d3d64/components/camel-cometd/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-cometd/pom.xml b/components/camel-cometd/pom.xml
index 9d9597c..9d73535 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/5b2d3d64/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 1b2dd71..c444acb 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1799,6 +1799,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>
@@ -1812,6 +1817,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>