You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dj...@apache.org on 2021/11/16 00:23:20 UTC

[camel-spring-boot] 04/04: remove more copied adocs

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

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

commit 66992892a7578b04db5ae124b1bacd292920329b
Author: David Jencks <dj...@apache.org>
AuthorDate: Tue Nov 9 20:45:15 2021 -0800

    remove more copied adocs
---
 .../modules/ROOT/pages/spring-cloud-consul.adoc    |  8 ----
 .../modules/ROOT/pages/spring-cloud-netflix.adoc   | 51 ----------------------
 .../modules/ROOT/pages/spring-cloud-zookeeper.adoc |  8 ----
 .../modules/ROOT/pages/spring-cloud.adoc           | 43 ------------------
 4 files changed, 110 deletions(-)

diff --git a/docs/spring-boot/modules/ROOT/pages/spring-cloud-consul.adoc b/docs/spring-boot/modules/ROOT/pages/spring-cloud-consul.adoc
deleted file mode 100644
index 3117092..0000000
--- a/docs/spring-boot/modules/ROOT/pages/spring-cloud-consul.adoc
+++ /dev/null
@@ -1,8 +0,0 @@
-= Spring Cloud Consul (deprecated)
-:since: 2.22
-:artifactid: camel-spring-cloud-consul
-:supportLevel: Stable-deprecated
-:deprecated: *deprecated*
-:description: Camel Cloud integration with Spring Cloud Consul
-
-*Since Camel {since}*
diff --git a/docs/spring-boot/modules/ROOT/pages/spring-cloud-netflix.adoc b/docs/spring-boot/modules/ROOT/pages/spring-cloud-netflix.adoc
deleted file mode 100644
index ce15b77..0000000
--- a/docs/spring-boot/modules/ROOT/pages/spring-cloud-netflix.adoc
+++ /dev/null
@@ -1,51 +0,0 @@
-= Spring Cloud Netflix (deprecated)
-:since: 2.19
-:artifactid: camel-spring-cloud-netflix
-:supportLevel: Stable-deprecated
-:deprecated: *deprecated*
-:description: Camel Cloud integration with Spring Cloud Netflix
-
-*Since Camel {since}*
-
-The Spring Cloud Netflix component bridges Camel Cloud and Spring Cloud Netflix so you can leverage Spring Cloud Netflix service discovery and load balance features in Camel and/or you can use Camel Service Discovery implementations as ServerList source for Spring Cloud Netflix's Ribbon load balancer.
-
-Maven users will need to add the following dependency to their `pom.xml` in order to use this component:
-
-[source,xml]
-----
-<dependency>
-    <groupId>org.apache.camel</groupId>
-    <artifactId>camel-spring-cloud-netflix</artifactId>
-    <version>${camel.version}</version>
-    <!-- use the same version as your Camel core version -->
-</dependency>
-----
-
-`camel-spring-cloud-netflix` jar comes with the `spring.factories` file, so as soon as you add that dependency into your classpath, Spring Boot will automatically auto-configure Camel for you.
-
-You can disable Camel Spring Cloud Netflix with the following properties:
-
-[source,properties]
-----
-# Enable/Disable the whole integration, default true
-camel.cloud.netflix = true
-
-# Enable/Disable the integration with Ribbon, default true
-camel.cloud.netflix.ribbon = true
-----
-
-== Spring Cloud Netflix Starter
-
-*Since Camel 2.19*
-
-To use the starter, add the following to your spring boot pom.xml file:
-
-[source,xml]
-----
-<dependency>
-    <groupId>org.apache.camel</groupId>
-    <artifactId>camel-spring-cloud-netflix-starter</artifactId>
-    <version>${camel.version}</version>
-    <!-- use the same version as your Camel core version -->
-</dependency>
-----
diff --git a/docs/spring-boot/modules/ROOT/pages/spring-cloud-zookeeper.adoc b/docs/spring-boot/modules/ROOT/pages/spring-cloud-zookeeper.adoc
deleted file mode 100644
index 61bb7a7..0000000
--- a/docs/spring-boot/modules/ROOT/pages/spring-cloud-zookeeper.adoc
+++ /dev/null
@@ -1,8 +0,0 @@
-= Spring Cloud Zookeeper (deprecated)
-:since: 2.22
-:artifactid: camel-spring-cloud-zookeeper
-:supportLevel: Stable-deprecated
-:deprecated: *deprecated*
-:description: Camel Cloud integration with Spring Cloud Zookeeper
-
-*Since Camel {since}*
diff --git a/docs/spring-boot/modules/ROOT/pages/spring-cloud.adoc b/docs/spring-boot/modules/ROOT/pages/spring-cloud.adoc
deleted file mode 100644
index 5a01ad8..0000000
--- a/docs/spring-boot/modules/ROOT/pages/spring-cloud.adoc
+++ /dev/null
@@ -1,43 +0,0 @@
-[[SpringCloud-SpringCloud]]
-= Spring Cloud (deprecated)
-:artifactid: camel-spring-cloud
-:since: 2.19
-:supportLevel: Stable-deprecated
-:deprecated: *deprecated*
-:description: Camel Cloud integration with Spring Cloud
-
-*Since Camel {since}*
-
-Spring Cloud component
-
-Maven users will need to add the following dependency to their `pom.xml`
-in order to use this component:
-
-[source,xml]
-------------------------------------------------------------------------------------------------
-<dependency>
-    <groupId>org.apache.camel</groupId>
-    <artifactId>camel-spring-cloud</artifactId>
-    <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
-</dependency>
-------------------------------------------------------------------------------------------------
-
-`camel-spring-cloud` jar comes with the `spring.factories` file, so as
-soon as you add that dependency into your classpath, Spring Boot will
-automatically auto-configure Camel for you.
-
-[[SpringCloud-CamelSpringCloudStarter]]
-== Camel Spring Cloud Starter
-
-*Since Camel 2.19*
-
-To use the starter, add the following to your spring boot pom.xml file:
-
-[source,xml]
-------------------------------------------------------
-<dependency>
-    <groupId>org.apache.camel</groupId>
-    <artifactId>camel-spring-cloud-starter</artifactId>
-    <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
-</dependency>
-------------------------------------------------------