Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 565AD2009C5 for ; Mon, 16 May 2016 11:50:56 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 553B9160A32; Mon, 16 May 2016 09:50:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5F6DF160A24 for ; Mon, 16 May 2016 11:50:55 +0200 (CEST) Received: (qmail 76554 invoked by uid 500); 16 May 2016 09:50:53 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 75542 invoked by uid 99); 16 May 2016 09:50:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 May 2016 09:50:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 44532DFFF9; Mon, 16 May 2016 09:50:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Mon, 16 May 2016 09:51:26 -0000 Message-Id: <9f38c1295cdb4c59b66867cf3fa7b212@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [35/50] [abbrv] camel git commit: CAMEL-9963: camel-blueprint - Namespace parser should skip placeholders for component dependencies archived-at: Mon, 16 May 2016 09:50:56 -0000 CAMEL-9963: camel-blueprint - Namespace parser should skip placeholders for component dependencies Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4eb0df95 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4eb0df95 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4eb0df95 Branch: refs/heads/kube-lb Commit: 4eb0df95c15970f1b9e54b3ab004ee8eeb468150 Parents: 1a39ddf Author: Claus Ibsen Authored: Fri May 13 07:50:35 2016 +0200 Committer: Claus Ibsen Committed: Mon May 16 09:59:33 2016 +0200 ---------------------------------------------------------------------- .../org/apache/camel/blueprint/handler/CamelNamespaceHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4eb0df95/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java ---------------------------------------------------------------------- diff --git a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java index 67501bf..63d6724 100644 --- a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java +++ b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java @@ -32,7 +32,6 @@ import javax.xml.bind.Binder; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; -import org.apache.camel.model.ToDynamicDefinition; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; @@ -80,6 +79,7 @@ import org.apache.camel.model.RouteDefinition; import org.apache.camel.model.SendDefinition; import org.apache.camel.model.SortDefinition; import org.apache.camel.model.ToDefinition; +import org.apache.camel.model.ToDynamicDefinition; import org.apache.camel.model.UnmarshalDefinition; import org.apache.camel.model.WireTapDefinition; import org.apache.camel.model.language.ExpressionDefinition;