You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/01/13 05:41:37 UTC

[camel] branch camel-3.14.x updated: Updating documentation links as some of the projects have moved from code.google.com to github. (#6732)

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

davsclaus pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.14.x by this push:
     new d35045c  Updating documentation links as some of the projects have moved from code.google.com to github. (#6732)
d35045c is described below

commit d35045cdee4885b5521ee0b7db2e88f3d690430c
Author: Chirag <cs...@manh.com>
AuthorDate: Thu Jan 13 00:40:22 2022 -0500

    Updating documentation links as some of the projects have moved from code.google.com to github. (#6732)
    
    * Update jsonpath-language.adoc
    
    Jsonpath has moved to github. Updating documentation to match.
    
    * Update leveldb.adoc
    
    Leveldb has moved to Github. Updating documentation.
---
 components/camel-jsonpath/src/main/docs/jsonpath-language.adoc | 4 ++--
 components/camel-leveldb/src/main/docs/leveldb.adoc            | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc b/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
index 8fe0986..f4d5924 100644
--- a/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
+++ b/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
@@ -10,7 +10,7 @@
 
 *Since Camel {since}*
 
-Camel supports https://code.google.com/p/json-path/[JSONPath] to allow
+Camel supports https://github.com/json-path/JsonPath/[JSONPath] to allow
 using xref:manual::expression.adoc[Expression] or xref:manual::predicate.adoc[Predicate] on JSON messages.
 
 
@@ -230,7 +230,7 @@ to extract a value from the message and bind it to a method parameter, as shown
 [source,java]
 ----
 public class Foo {
-    
+
     @Consume("activemq:queue:books.new")
     public void doSomething(@JsonPath("$.store.book[*].author") String author, @Body String json) {
       // process the inbound message here
diff --git a/components/camel-leveldb/src/main/docs/leveldb.adoc b/components/camel-leveldb/src/main/docs/leveldb.adoc
index 7db523c..0e1325a 100644
--- a/components/camel-leveldb/src/main/docs/leveldb.adoc
+++ b/components/camel-leveldb/src/main/docs/leveldb.adoc
@@ -10,7 +10,7 @@
 
 *Since Camel {since}*
 
-https://code.google.com/p/leveldb/[Leveldb] is a very lightweight and
+https://github.com/google/leveldb[Leveldb] is a very lightweight and
 embedable key value database. It allows together with Camel to provide
 persistent support for various Camel features such as
 Aggregator.