From fc1c6b8f00198e627038c9ecfa0c33cc10a8a737 Mon Sep 17 00:00:00 2001 From: Claus Ibsen Date: Wed, 30 Oct 2024 11:26:31 +0100 Subject: [PATCH] Polished --- README.adoc | 30 +++++++++++++++--------------- kamelet-chucknorris/pom.xml | 2 +- kamelet-main/pom.xml | 2 +- kamelet-sql/pom.xml | 2 +- oaipmh/pom.xml | 14 +++++++------- routeloader/pom.xml | 2 +- spring-xquery/pom.xml | 2 +- transformer-demo/pom.xml | 2 +- 8 files changed, 28 insertions(+), 28 deletions(-) diff --git a/README.adoc b/README.adoc index 52b8db397..8765144f5 100644 --- a/README.adoc +++ b/README.adoc @@ -48,6 +48,8 @@ Number of Examples: 74 (0 deprecated) | link:resume-api/resume-api-fileset-wal/README.md[Resume Api Fileset Wal] (resume-api-fileset-wal) | Advanced | An example for showing the Resume API for processing a large directory using the write ahead log. +| link:routeloader/README.adoc[Routeloader] (routeloader) | Advanced | Example loading and compiling Java routes on startup + | link:basic/README.adoc[Basic] (basic) | Beginner | Basic example | link:console/README.adoc[Console] (console) | Beginner | An example that reads input from the console @@ -58,18 +60,8 @@ Number of Examples: 74 (0 deprecated) | link:kamelet/README.adoc[Kamelet] (kamelet) | Beginner | How to use Kamelets -| link:kamelet-chucknorris/README.adoc[Kamelet Chucknorris] (kamelet-chucknorris) | Beginner | How easy it is to create your own Kamelets - -| link:kamelet-main/README.adoc[Kamelet Main] (kamelet-main) | Beginner | How to easily run Kamelets - -| link:kamelet-sql/README.adoc[Kamelet Sql] (kamelet-sql) | Beginner | Consume from PostgreSQL database connected through an AWS Secrets Manager Secret - | link:minio/README.adoc[Minio] (minio) | Beginner | An example for showing Camel using MinIO Component -| link:oaipmh/README.adoc[OAIPMH example] (oaipmh) | Beginner | An example with OAIPMH component - -| link:routeloader/README.adoc[Routeloader] (routeloader) | Beginner | Example loading and compiling Java routes on startup - | link:routes-configuration/README.adoc[Routes Configuration] (routes-configuration) | Beginner | Example with global routes configuration for error handling | link:routetemplate/README.adoc[Routetemplate] (routetemplate) | Beginner | How to use route templates (parameterized routes) @@ -78,8 +70,6 @@ Number of Examples: 74 (0 deprecated) | link:spring/README.adoc[Spring] (spring) | Beginner | An example showing how to work with Camel and Spring -| link:spring-xquery/README.adoc[Spring XQuery] (spring-xquery) | Beginner | An example using Spring XML to transform a message using XQuery - | link:main/README.adoc[Main] (main) | Camel Standalone | An example for showing standalone Camel | link:main-endpointdsl/README.adoc[Main Endpointdsl] (main-endpointdsl) | Camel Standalone | An example for showing standalone Camel with Endpoint DSL @@ -146,9 +136,11 @@ Number of Examples: 74 (0 deprecated) | link:ftp/README.adoc[FTP] (ftp) | File | An example for showing Camel FTP integration -| link:transformer-demo/README.adoc[Transformer and Validator Spring XML] (transformer-demo) | Input/Output Type Contract | An example demonstrating declarative transformation and validation along data type declaration using - Spring DSL - +| link:kamelet-chucknorris/README.adoc[Kamelet Chucknorris] (kamelet-chucknorris) | Kamelet | How easy it is to create your own Kamelets + +| link:kamelet-main/README.adoc[Kamelet Main] (kamelet-main) | Kamelet | How to easily run Kamelets + +| link:kamelet-sql/README.adoc[Kamelet Sql] (kamelet-sql) | Kamelet | Consume from PostgreSQL database connected through an AWS Secrets Manager Secret | link:google/google-pubsub/README.adoc[Google Pubsub] (google-pubsub) | Messaging | Google Pubsub example @@ -168,6 +160,8 @@ Number of Examples: 74 (0 deprecated) | link:splunk/README.adoc[Splunk] (splunk) | Observability | An example using Splunk +| link:oaipmh/README.adoc[OAIPMH example] (oaipmh) | Search | An example with OAIPMH component + | link:vault/aws-secrets-manager/README.adoc[Aws Secrets Manager] (aws-secrets-manager) | Security | An example for showing AWS Secrets Manager Camel component | link:vault/aws-secrets-manager-reloading/README.adoc[Aws Secrets Manager Reloading] (aws-secrets-manager-reloading) | Security | An example for showing AWS Secrets Manager Camel component with reloading @@ -183,6 +177,12 @@ Number of Examples: 74 (0 deprecated) | link:whatsapp/README.adoc[Whatsapp] (whatsapp) | Social | An example that uses Whatsapp API | link:mapstruct/README.adoc[Mapstruct] (mapstruct) | Transformation | How to use MapStruct for POJO data mapping + +| link:spring-xquery/README.adoc[Spring XQuery] (spring-xquery) | Transformation | An example using Spring XML to transform a message using XQuery + +| link:transformer-demo/README.adoc[Transformer and Validator Spring XML] (transformer-demo) | Transformation | An example demonstrating declarative transformation and validation along data type declaration using + Spring DSL + |=== // examples: END diff --git a/kamelet-chucknorris/pom.xml b/kamelet-chucknorris/pom.xml index 639bd05a5..cbbadec17 100644 --- a/kamelet-chucknorris/pom.xml +++ b/kamelet-chucknorris/pom.xml @@ -34,7 +34,7 @@ How easy it is to create your own Kamelets - Beginner + Kamelet diff --git a/kamelet-main/pom.xml b/kamelet-main/pom.xml index f92ff048e..2e70e5b50 100644 --- a/kamelet-main/pom.xml +++ b/kamelet-main/pom.xml @@ -34,7 +34,7 @@ How to easily run Kamelets - Beginner + Kamelet diff --git a/kamelet-sql/pom.xml b/kamelet-sql/pom.xml index 6edf15720..18395a904 100644 --- a/kamelet-sql/pom.xml +++ b/kamelet-sql/pom.xml @@ -34,7 +34,7 @@ Consume from PostgreSQL database connected through an AWS Secrets Manager Secret - Beginner + Kamelet diff --git a/oaipmh/pom.xml b/oaipmh/pom.xml index aed8cfb12..fc7aa0462 100644 --- a/oaipmh/pom.xml +++ b/oaipmh/pom.xml @@ -32,7 +32,7 @@ jar - Beginner + Search OAIPMH example @@ -49,16 +49,21 @@ - + org.apache.camel camel-core + + org.apache.camel + camel-oaipmh + org.apache.camel camel-management + org.apache.logging.log4j @@ -72,10 +77,6 @@ ${log4j2-version} runtime - - org.apache.camel - camel-oaipmh - org.apache.camel @@ -84,7 +85,6 @@ - diff --git a/routeloader/pom.xml b/routeloader/pom.xml index dfa713bc5..0b0bb77b7 100644 --- a/routeloader/pom.xml +++ b/routeloader/pom.xml @@ -33,7 +33,7 @@ Example loading and compiling Java routes on startup - Beginner + Advanced diff --git a/spring-xquery/pom.xml b/spring-xquery/pom.xml index a70390727..c3a12b4f6 100644 --- a/spring-xquery/pom.xml +++ b/spring-xquery/pom.xml @@ -33,7 +33,7 @@ An example using Spring XML to transform a message using XQuery - Beginner + Transformation Spring XQuery diff --git a/transformer-demo/pom.xml b/transformer-demo/pom.xml index 96d0fc7c5..a27809985 100644 --- a/transformer-demo/pom.xml +++ b/transformer-demo/pom.xml @@ -34,7 +34,7 @@ jar - Input/Output Type Contract + Transformation Transformer and Validator Spring XML