Repository: camel Updated Branches: refs/heads/master 52b78beac -> 4fcc3e3ed
Upgraded aws Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4fcc3e3e Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4fcc3e3e Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4fcc3e3e Branch: refs/heads/master Commit: 4fcc3e3ed6bc8085db0c191d5d0bfa8dadef5ae3 Parents: 52b78be Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Mar 11 13:26:01 2014 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Mar 11 13:26:01 2014 +0100 ---------------------------------------------------------------------- parent/pom.xml | 4 +- .../apache/camel/itest/karaf/CamelAwsTest.java | 47 ++++++++++++++++++++ 2 files changed, 49 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4fcc3e3e/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 7df74cb..ebd2a04 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -59,8 +59,8 @@ <avalon-version>4.3.1</avalon-version> <avro-version>1.7.5</avro-version> <avro-bundle-version>1.7.5_1</avro-bundle-version> - <aws-java-sdk-bundle-version>1.6.3_1</aws-java-sdk-bundle-version> - <aws-java-sdk-version>1.6.3</aws-java-sdk-version> + <aws-java-sdk-bundle-version>1.7.1_1</aws-java-sdk-bundle-version> + <aws-java-sdk-version>1.7.1</aws-java-sdk-version> <axiom-version>1.2.14</axiom-version> <backport-util-concurrent-version>3.1</backport-util-concurrent-version> <bcel-bundle-version>5.2_4</bcel-bundle-version> http://git-wip-us.apache.org/repos/asf/camel/blob/4fcc3e3e/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java ---------------------------------------------------------------------- diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java new file mode 100644 index 0000000..7bda30c --- /dev/null +++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelAwsTest.java @@ -0,0 +1,47 @@ +/** + * 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.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.Option; +import org.ops4j.pax.exam.junit.Configuration; +import org.ops4j.pax.exam.junit.JUnit4TestRunner; + +@RunWith(JUnit4TestRunner.class) +public class CamelAwsTest extends AbstractFeatureTest { + + public static final String COMPONENT = extractName(CamelAwsTest.class); + + @Test + public void test() throws Exception { + testComponent("aws-cw"); + testComponent("aws-ddb"); + testComponent("aws-s3"); + testComponent("aws-sdb"); + testComponent("aws-ses"); + testComponent("aws-sns"); + testComponent("aws-sqs"); + testComponent("aws-swf"); + } + + @Configuration + public static Option[] configure() { + return configure("aws"); + } + +}