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.git
commit c82228fd792b01c56826fb6abb63c4dae0a7650c Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Jul 31 15:47:00 2019 +0200 CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Aligned Examples --- examples/camel-example-cxf-proxy/pom.xml | 2 +- examples/camel-example-hystrix/client/pom.xml | 2 +- examples/camel-example-hystrix/service1/pom.xml | 2 +- examples/camel-example-opentracing/client/pom.xml | 2 +- examples/camel-example-opentracing/service1/pom.xml | 2 +- examples/camel-example-opentracing/service2/pom.xml | 2 +- examples/camel-example-rest-producer/pom.xml | 4 ++-- examples/camel-example-rest-producer/readme.adoc | 2 +- examples/camel-example-spring-boot-servicecall/consumer/pom.xml | 2 +- examples/camel-example-zipkin/client/pom.xml | 2 +- examples/camel-example-zipkin/service1/pom.xml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/camel-example-cxf-proxy/pom.xml b/examples/camel-example-cxf-proxy/pom.xml index 24b1b46..5e8be1b 100644 --- a/examples/camel-example-cxf-proxy/pom.xml +++ b/examples/camel-example-cxf-proxy/pom.xml @@ -60,7 +60,7 @@ <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4</artifactId> + <artifactId>camel-http</artifactId> </dependency> <dependency> diff --git a/examples/camel-example-hystrix/client/pom.xml b/examples/camel-example-hystrix/client/pom.xml index a669595..277be3e 100644 --- a/examples/camel-example-hystrix/client/pom.xml +++ b/examples/camel-example-hystrix/client/pom.xml @@ -71,7 +71,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> diff --git a/examples/camel-example-hystrix/service1/pom.xml b/examples/camel-example-hystrix/service1/pom.xml index 5a1e3f1..defc72e 100644 --- a/examples/camel-example-hystrix/service1/pom.xml +++ b/examples/camel-example-hystrix/service1/pom.xml @@ -79,7 +79,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> </dependencies> diff --git a/examples/camel-example-opentracing/client/pom.xml b/examples/camel-example-opentracing/client/pom.xml index e61ce9d..2a246a2 100644 --- a/examples/camel-example-opentracing/client/pom.xml +++ b/examples/camel-example-opentracing/client/pom.xml @@ -67,7 +67,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4</artifactId> + <artifactId>camel-http</artifactId> </dependency> <!-- tracer --> diff --git a/examples/camel-example-opentracing/service1/pom.xml b/examples/camel-example-opentracing/service1/pom.xml index 94a822d..2a3f347 100644 --- a/examples/camel-example-opentracing/service1/pom.xml +++ b/examples/camel-example-opentracing/service1/pom.xml @@ -80,7 +80,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> <dependency> diff --git a/examples/camel-example-opentracing/service2/pom.xml b/examples/camel-example-opentracing/service2/pom.xml index 9817ef4..d372aff 100644 --- a/examples/camel-example-opentracing/service2/pom.xml +++ b/examples/camel-example-opentracing/service2/pom.xml @@ -80,7 +80,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> diff --git a/examples/camel-example-rest-producer/pom.xml b/examples/camel-example-rest-producer/pom.xml index 597bd7a..eec4558 100644 --- a/examples/camel-example-rest-producer/pom.xml +++ b/examples/camel-example-rest-producer/pom.xml @@ -95,10 +95,10 @@ <artifactId>camel-swagger-java-starter</artifactId> </dependency> - <!-- use http4 as rest producer --> + <!-- use http as rest producer --> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> <!-- test --> diff --git a/examples/camel-example-rest-producer/readme.adoc b/examples/camel-example-rest-producer/readme.adoc index a67a90d..b5f3f15 100644 --- a/examples/camel-example-rest-producer/readme.adoc +++ b/examples/camel-example-rest-producer/readme.adoc @@ -14,7 +14,7 @@ which returns a message, that is logged. == Configuring Rest The rest producer is configured using Camels Rest DSL which is done using the `restConfiguration` in the route. -The actual HTTP client that is used to call the REST service is `camel-http4` which is added as dependency +The actual HTTP client that is used to call the REST service is `camel-http` which is added as dependency in the `pom.xml` file. You can use other HTTP clients with the REST producer such as - camel-http diff --git a/examples/camel-example-spring-boot-servicecall/consumer/pom.xml b/examples/camel-example-spring-boot-servicecall/consumer/pom.xml index 9b1b7c1..4cd9125 100644 --- a/examples/camel-example-spring-boot-servicecall/consumer/pom.xml +++ b/examples/camel-example-spring-boot-servicecall/consumer/pom.xml @@ -103,7 +103,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> diff --git a/examples/camel-example-zipkin/client/pom.xml b/examples/camel-example-zipkin/client/pom.xml index dd50e83..49b6bdf 100644 --- a/examples/camel-example-zipkin/client/pom.xml +++ b/examples/camel-example-zipkin/client/pom.xml @@ -66,7 +66,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4</artifactId> + <artifactId>camel-http</artifactId> </dependency> <!-- logging --> diff --git a/examples/camel-example-zipkin/service1/pom.xml b/examples/camel-example-zipkin/service1/pom.xml index 2aece7b..8d1ed6d 100644 --- a/examples/camel-example-zipkin/service1/pom.xml +++ b/examples/camel-example-zipkin/service1/pom.xml @@ -79,7 +79,7 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> - <artifactId>camel-http4-starter</artifactId> + <artifactId>camel-http-starter</artifactId> </dependency> </dependencies>
