From commits-return-47637-apmail-camel-commits-archive=camel.apache.org@camel.apache.org Mon Apr 4 11:51:33 2016 Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6ACC018D40 for ; Mon, 4 Apr 2016 11:51:33 +0000 (UTC) Received: (qmail 29763 invoked by uid 500); 4 Apr 2016 11:51:33 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 29720 invoked by uid 500); 4 Apr 2016 11:51:33 -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 29711 invoked by uid 99); 4 Apr 2016 11:51:33 -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, 04 Apr 2016 11:51:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 35E30DFC72; Mon, 4 Apr 2016 11:51:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Message-Id: <04521dc1bade4af093cce9460cdde305@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: CAMEL-9806: Add camel-IronMQ Karaf feature Date: Mon, 4 Apr 2016 11:51:33 +0000 (UTC) Repository: camel Updated Branches: refs/heads/master fa8900b0c -> 36d250532 CAMEL-9806: Add camel-IronMQ Karaf feature Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/36d25053 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/36d25053 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/36d25053 Branch: refs/heads/master Commit: 36d250532f0f5ff7a24899b4d2a7c6ff14a9a583 Parents: fa8900b Author: Andrea Cosentino Authored: Mon Apr 4 13:49:33 2016 +0200 Committer: Andrea Cosentino Committed: Mon Apr 4 13:50:22 2016 +0200 ---------------------------------------------------------------------- parent/pom.xml | 1 + .../features/src/main/resources/features.xml | 7 ++++ .../camel/itest/karaf/CamelIronmqTest.java | 34 ++++++++++++++++++++ 3 files changed, 42 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/36d25053/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 77456ca..e5efd43 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -249,6 +249,7 @@ 1.10_5 1.10 3.0.3 + 3.0.3_1 20050913_4 20090621 1.1 http://git-wip-us.apache.org/repos/asf/camel/blob/36d25053/platforms/karaf/features/src/main/resources/features.xml ---------------------------------------------------------------------- diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml index e5c0ea9..d3cc39f 100644 --- a/platforms/karaf/features/src/main/resources/features.xml +++ b/platforms/karaf/features/src/main/resources/features.xml @@ -784,6 +784,13 @@ mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.irclib/${irclib-bundle-version} mvn:org.apache.camel/camel-irc/${project.version} + + camel-core + mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.ironmq/${ironmq-bundle-version} + mvn:com.google.code.gson/gson/${gson-version} + mvn:org.apache.commons/commons-lang3/${commons-lang3-version} + mvn:org.apache.camel/camel-ironmq/${project.version} + camel-core mvn:com.fasterxml.jackson.core/jackson-core/${jackson2-version} http://git-wip-us.apache.org/repos/asf/camel/blob/36d25053/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelIronmqTest.java ---------------------------------------------------------------------- diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelIronmqTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelIronmqTest.java new file mode 100644 index 0000000..d5b5c05 --- /dev/null +++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelIronmqTest.java @@ -0,0 +1,34 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.itest.karaf; + +import org.apache.camel.test.karaf.AbstractFeatureTest; + import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.junit.PaxExam; + +@RunWith(PaxExam.class) +public class CamelIronmqTest extends AbstractFeatureTest { + + public static final String COMPONENT = extractName(CamelIronmqTest.class); + + @Test + public void test() throws Exception { + testComponent(COMPONENT); + } + +} \ No newline at end of file