You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2021/02/15 08:09:26 UTC

[camel] 03/11: Fix invalid profile id (for maven 4)

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

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2f5e601fecfb99eaf9d1c79bcf264461a3ea500f
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Thu Feb 11 14:03:07 2021 +0100

    Fix invalid profile id (for maven 4)
---
 components/camel-cdi/pom.xml                                            | 2 +-
 components/camel-jmx/pom.xml                                            | 2 +-
 components/camel-kubernetes/pom.xml                                     | 2 +-
 components/camel-soap/pom.xml                                           | 2 +-
 core/camel-core-engine/pom.xml                                          | 2 +-
 core/camel-management-api/pom.xml                                       | 2 +-
 core/camel-management/pom.xml                                           | 2 +-
 parent/pom.xml                                                          | 2 +-
 tests/camel-itest/pom.xml                                               | 2 +-
 tooling/maven/camel-eip-documentation-enricher-maven-plugin/pom.xml     | 2 +-
 .../maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto-v3/pom.xml | 2 +-
 .../maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto/pom.xml    | 2 +-
 tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-v3/pom.xml | 2 +-
 tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml/pom.xml    | 2 +-
 .../maven/camel-restdsl-swagger-plugin/src/it/simple-xml-dto/pom.xml    | 2 +-
 tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml/pom.xml    | 2 +-
 16 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/components/camel-cdi/pom.xml b/components/camel-cdi/pom.xml
index 895ee50..b076e79 100644
--- a/components/camel-cdi/pom.xml
+++ b/components/camel-cdi/pom.xml
@@ -448,7 +448,7 @@
         </profile>
 
         <profile>
-            <id>jdk9+-weld-3.0</id>
+            <id>jdk9s-weld-3.0</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/components/camel-jmx/pom.xml b/components/camel-jmx/pom.xml
index 83b96ea..0469bb9 100644
--- a/components/camel-jmx/pom.xml
+++ b/components/camel-jmx/pom.xml
@@ -124,7 +124,7 @@
             (https://github.com/mojohaus/jaxb2-maven-plugin/issues/43). We need to add the plugin back
             once we are sure it works on both JDK8 and JDK9.
             See https://issues.apache.org/jira/browse/CAMEL-10141 for more info. -->
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/components/camel-kubernetes/pom.xml b/components/camel-kubernetes/pom.xml
index 89221f8..b7ad997 100644
--- a/components/camel-kubernetes/pom.xml
+++ b/components/camel-kubernetes/pom.xml
@@ -126,7 +126,7 @@
 
     <profiles>
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/components/camel-soap/pom.xml b/components/camel-soap/pom.xml
index fbfb04b..d16fd40 100644
--- a/components/camel-soap/pom.xml
+++ b/components/camel-soap/pom.xml
@@ -222,7 +222,7 @@
             (https://github.com/mojohaus/jaxb2-maven-plugin/issues/43). We need to add the plugin back
             once we are sure it works on both JDK8 and JDK9.
             See https://issues.apache.org/jira/browse/CAMEL-10141 for more info. -->
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/core/camel-core-engine/pom.xml b/core/camel-core-engine/pom.xml
index 369f5c5..892333c 100644
--- a/core/camel-core-engine/pom.xml
+++ b/core/camel-core-engine/pom.xml
@@ -363,7 +363,7 @@
         </profile>
 
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/core/camel-management-api/pom.xml b/core/camel-management-api/pom.xml
index 7f51f96..0ca4839 100644
--- a/core/camel-management-api/pom.xml
+++ b/core/camel-management-api/pom.xml
@@ -257,7 +257,7 @@
         </profile>
 
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/core/camel-management/pom.xml b/core/camel-management/pom.xml
index 5bf231d..e484a6f 100644
--- a/core/camel-management/pom.xml
+++ b/core/camel-management/pom.xml
@@ -313,7 +313,7 @@
         </profile>
 
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/parent/pom.xml b/parent/pom.xml
index 1a2b42a..6e36103 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -4781,7 +4781,7 @@
         </profile>
 
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/tests/camel-itest/pom.xml b/tests/camel-itest/pom.xml
index fe85502..4494703 100644
--- a/tests/camel-itest/pom.xml
+++ b/tests/camel-itest/pom.xml
@@ -453,7 +453,7 @@
 
     <profiles>
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/tooling/maven/camel-eip-documentation-enricher-maven-plugin/pom.xml b/tooling/maven/camel-eip-documentation-enricher-maven-plugin/pom.xml
index 02836e6..e996388 100644
--- a/tooling/maven/camel-eip-documentation-enricher-maven-plugin/pom.xml
+++ b/tooling/maven/camel-eip-documentation-enricher-maven-plugin/pom.xml
@@ -161,7 +161,7 @@
 
     <profiles>
         <profile>
-            <id>jdk9+-build</id>
+            <id>jdk9s-build</id>
             <activation>
                 <jdk>[9,)</jdk>
             </activation>
diff --git a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto-v3/pom.xml b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto-v3/pom.xml
index 0840e84..a16bb71 100644
--- a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto-v3/pom.xml
+++ b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto-v3/pom.xml
@@ -94,7 +94,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>
diff --git a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto/pom.xml b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto/pom.xml
index 4ea0e33..499cf87 100644
--- a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto/pom.xml
+++ b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-dto/pom.xml
@@ -94,7 +94,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>
diff --git a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-v3/pom.xml b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-v3/pom.xml
index c923c1c..fca3776 100644
--- a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-v3/pom.xml
+++ b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml-v3/pom.xml
@@ -56,7 +56,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>
diff --git a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml/pom.xml b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml/pom.xml
index 1c787ac..9de5458 100644
--- a/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml/pom.xml
+++ b/tooling/maven/camel-restdsl-openapi-plugin/src/it/simple-xml/pom.xml
@@ -56,7 +56,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>
diff --git a/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml-dto/pom.xml b/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml-dto/pom.xml
index 2e0d4f6..0f1d75a 100644
--- a/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml-dto/pom.xml
+++ b/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml-dto/pom.xml
@@ -89,7 +89,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>
diff --git a/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml/pom.xml b/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml/pom.xml
index 4f2c915..aba3f53 100644
--- a/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml/pom.xml
+++ b/tooling/maven/camel-restdsl-swagger-plugin/src/it/simple-xml/pom.xml
@@ -56,7 +56,7 @@
   </build>
   <profiles>
     <profile>
-      <id>jdk9+-build</id>
+      <id>jdk9s-build</id>
       <activation>
         <jdk>[9,)</jdk>
       </activation>