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 2023/10/23 10:00:16 UTC

[camel-spring-boot-examples] branch main updated: Add category to examples

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 74ce761  Add category to examples
74ce761 is described below

commit 74ce761199251a42edb5d78da530784e041fc33c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Oct 23 12:00:09 2023 +0200

    Add category to examples
---
 README.adoc                                              | 14 +++++++-------
 azure/camel-example-spring-boot-azure-eventhubs/pom.xml  |  4 ++++
 azure/camel-example-spring-boot-azure-servicebus/pom.xml |  4 ++++
 mail-ms-exchange-oauth2/pom.xml                          |  3 +--
 4 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/README.adoc b/README.adoc
index aa02c32..3df272f 100644
--- a/README.adoc
+++ b/README.adoc
@@ -33,13 +33,6 @@ Number of Examples: 54 (0 deprecated)
 |===
 | Example | Category | Description
 
-| link:azure/camel-example-spring-boot-azure-eventhubs/README.adoc[Spring Boot Azure Eventhubs] (camel-example-spring-boot-azure-eventhubs) |  | An example showing how to work with Camel, Azure Event Hubs and Spring Boot
-
-| link:azure/camel-example-spring-boot-azure-servicebus/README.adoc[Spring Boot Azure Servicebus] (camel-example-spring-boot-azure-servicebus) |  | An example showing how to work with Camel, Azure Service Bus and Spring Boot
-
-| link:mail-ms-exchange-oauth2/Readme.adoc[Mail Ms Exchange Oauth2] (mail-ms-exchange-oauth2) |  | An example showing how to use Camel on Spring Boot to connect
-        with IMAP protocol and access email data for Office 365 users using OAuth2 authentication
-
 | link:aot-basic/readme.adoc[Aot Basic] (aot-basic) | AOT | Example on how to leverage Spring Boot AOT in Camel Spring Boot
 
 | link:endpointdsl/readme.adoc[Endpointdsl] (endpointdsl) | Beginner | Using type-safe Endpoint DSL
@@ -72,6 +65,10 @@ Number of Examples: 54 (0 deprecated)
 
 | link:aws2-s3/README.adoc[Aws2 S3] (aws2-s3) | Cloud | An example showing the Camel AWS2 S3 component with Spring Boot
 
+| link:azure/camel-example-spring-boot-azure-eventhubs/README.adoc[Spring Boot Azure Eventhubs] (camel-example-spring-boot-azure-eventhubs) | Cloud | An example showing how to work with Camel, Azure Event Hubs and Spring Boot
+
+| link:azure/camel-example-spring-boot-azure-servicebus/README.adoc[Spring Boot Azure Servicebus] (camel-example-spring-boot-azure-servicebus) | Cloud | An example showing how to work with Camel, Azure Service Bus and Spring Boot
+
 | link:infinispan/README.adoc[Infinispan] (infinispan) | Cloud | An example showing the Camel Infinispan component with Spring Boot
 
 | link:webhook/readme.adoc[Webhook] (webhook) | Cloud | Example on how to use the Camel Webhook component
@@ -99,6 +96,9 @@ Number of Examples: 54 (0 deprecated)
 
 | link:validator/readme.adoc[Validator Spring Boot] (validator) | Input/Output Type Contract | An example showing how to work with declarative validation and Spring Boot
 
+| link:mail-ms-exchange-oauth2/Readme.adoc[Mail Ms Exchange Oauth2] (mail-ms-exchange-oauth2) | Mail | An example showing how to use Camel on Spring Boot to connect
+        with IMAP protocol and access email data for Office 365 users using OAuth2 authentication
+
 | link:actuator-http-metrics/readme.adoc[Actuator Http Metrics] (actuator-http-metrics) | Management and Monitoring | Example on how to use Spring Boot's Actuator endpoints to gather info like mappings or metrics
 
 | link:health-checks/readme.adoc[Health Checks] (health-checks) | Management and Monitoring | An example how to use custom health-checks
diff --git a/azure/camel-example-spring-boot-azure-eventhubs/pom.xml b/azure/camel-example-spring-boot-azure-eventhubs/pom.xml
index e978f4f..a60a9b1 100644
--- a/azure/camel-example-spring-boot-azure-eventhubs/pom.xml
+++ b/azure/camel-example-spring-boot-azure-eventhubs/pom.xml
@@ -32,6 +32,10 @@
   <name>Camel SB Examples :: Azure Event Hubs</name>
   <description>An example showing how to work with Camel, Azure Event Hubs and Spring Boot</description>
 
+  <properties>
+    <category>Cloud</category>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.springframework.boot</groupId>
diff --git a/azure/camel-example-spring-boot-azure-servicebus/pom.xml b/azure/camel-example-spring-boot-azure-servicebus/pom.xml
index 81010b1..3c57464 100644
--- a/azure/camel-example-spring-boot-azure-servicebus/pom.xml
+++ b/azure/camel-example-spring-boot-azure-servicebus/pom.xml
@@ -32,6 +32,10 @@
   <name>Camel SB Examples :: Azure Service Bus</name>
   <description>An example showing how to work with Camel, Azure Service Bus and Spring Boot</description>
 
+  <properties>
+    <category>Cloud</category>
+  </properties>
+  
   <dependencies>
     <dependency>
       <groupId>org.springframework.boot</groupId>
diff --git a/mail-ms-exchange-oauth2/pom.xml b/mail-ms-exchange-oauth2/pom.xml
index b6e938c..405410a 100644
--- a/mail-ms-exchange-oauth2/pom.xml
+++ b/mail-ms-exchange-oauth2/pom.xml
@@ -18,10 +18,9 @@
         with IMAP protocol and access email data for Office 365 users using OAuth2 authentication</description>
 
     <properties>
-        <maven.compiler.source>11</maven.compiler.source>
-        <maven.compiler.target>11</maven.compiler.target>
         <msal4j-version>1.13.2</msal4j-version>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <category>Mail</category>
     </properties>
 
     <dependencyManagement>