You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/02/15 17:03:48 UTC

[camel-spring-boot] branch master updated (f4fa4bf -> 72c535f)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


    from f4fa4bf  CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB
     new 5e28c39  CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB
     new 72c535f  CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel/springboot/catalog/components.properties |  3 +-
 .../camel/itest/springboot/CamelAwsSdbTest.java    | 48 ----------------------
 2 files changed, 1 insertion(+), 50 deletions(-)
 delete mode 100644 tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsSdbTest.java


[camel-spring-boot] 01/02: CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 5e28c3931b93442206e31093da058cd0a2ad1efa
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 15 18:02:56 2021 +0100

    CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB
---
 .../org/apache/camel/springboot/catalog/components.properties          | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index 2c23680..9593ab9 100644
--- a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -32,7 +32,6 @@ aws-lambda
 aws-mq
 aws-msk
 aws-s3
-aws-sdb
 aws-ses
 aws-sns
 aws-sqs
@@ -361,4 +360,4 @@ xslt-saxon
 yammer
 zendesk
 zookeeper
-zookeeper-master
\ No newline at end of file
+zookeeper-master


[camel-spring-boot] 02/02: CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 72c535f0d0dab9e0362aa9f539c4ec6733de0fac
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 15 18:03:32 2021 +0100

    CAMEL-16115 - Remove Camel-AWS-* components - AWS-SDB
---
 .../camel/itest/springboot/CamelAwsSdbTest.java    | 48 ----------------------
 1 file changed, 48 deletions(-)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsSdbTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsSdbTest.java
deleted file mode 100644
index 958fb3e..0000000
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsSdbTest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * 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.springboot;
-
-import org.apache.camel.itest.springboot.util.ArquillianPackager;
-import org.jboss.arquillian.container.test.api.Deployment;
-import org.jboss.arquillian.junit.Arquillian;
-import org.jboss.shrinkwrap.api.Archive;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-
-@RunWith(Arquillian.class)
-public class CamelAwsSdbTest extends AbstractSpringBootTestSupport {
-
-    @Deployment
-    public static Archive<?> createSpringBootPackage() throws Exception {
-        return ArquillianPackager.springBootPackage(createTestConfig());
-    }
-
-    public static ITestConfig createTestConfig() {
-        return new ITestConfigBuilder()
-                .module(inferModuleName(CamelAwsSdbTest.class))
-                .build();
-    }
-
-    @Test
-    public void componentTests() throws Exception {
-        this.runComponentTest(config);
-        this.runModuleUnitTestsIfEnabled(config);
-    }
-
-
-}