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/06/27 15:34:23 UTC

[camel] branch main updated (3bfa711b927 -> 330fcfc4613)

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

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 3bfa711b927 Update grpc-version
     new 3134c1077c7 Fix release process with error building camel-component-maven-plugin
     new cc4a0264f01 Fix release process with error building camel-debezium-maven-plugin
     new 330fcfc4613 camel-source-plugin: Use jar-no-fork workaround due to 3.2.1 to 3.3.0 upgrade: https://stackoverflow.com/questions/76305897/maven-build-fails-after-upgrading-to-maven-source-plugin-from-3-2-1-to-3-3-0

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel-debezium-maven-plugin/pom.xml            | 23 ++++++++++++++++++
 pom.xml                                            |  2 +-
 tooling/maven/camel-component-maven-plugin/pom.xml | 28 ++++++++++++++++++++++
 3 files changed, 52 insertions(+), 1 deletion(-)


[camel] 01/03: Fix release process with error building camel-component-maven-plugin

Posted by da...@apache.org.
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.git

commit 3134c1077c79b38c9c70a2a510c50c2c789e8edf
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jun 27 13:55:12 2023 +0200

    Fix release process with error building camel-component-maven-plugin
---
 tooling/maven/camel-component-maven-plugin/pom.xml | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/tooling/maven/camel-component-maven-plugin/pom.xml b/tooling/maven/camel-component-maven-plugin/pom.xml
index fee3ddddc4d..2c513eeb1d0 100644
--- a/tooling/maven/camel-component-maven-plugin/pom.xml
+++ b/tooling/maven/camel-component-maven-plugin/pom.xml
@@ -83,4 +83,32 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
+                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                    <mojoDependencies/>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>mojo-descriptor</id>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>help-goal</id>
+                        <goals>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>


[camel] 02/03: Fix release process with error building camel-debezium-maven-plugin

Posted by da...@apache.org.
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.git

commit cc4a0264f01e644f153255ea6e86efe13a05cf7e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jun 27 14:41:53 2023 +0200

    Fix release process with error building camel-debezium-maven-plugin
---
 .../camel-debezium-maven-plugin/pom.xml            | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml b/components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml
index f1d2fbe7b12..d6245b0f8ce 100644
--- a/components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml
+++ b/components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml
@@ -116,6 +116,29 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <configuration>
+                    <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
+                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+                    <mojoDependencies/>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>mojo-descriptor</id>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>help-goal</id>
+                        <goals>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 


[camel] 03/03: camel-source-plugin: Use jar-no-fork workaround due to 3.2.1 to 3.3.0 upgrade: https://stackoverflow.com/questions/76305897/maven-build-fails-after-upgrading-to-maven-source-plugin-from-3-2-1-to-3-3-0

Posted by da...@apache.org.
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.git

commit 330fcfc461374bafda14af26eb486eaad0003ae1
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jun 27 13:21:23 2023 +0200

    camel-source-plugin: Use jar-no-fork workaround due to 3.2.1 to 3.3.0 upgrade: https://stackoverflow.com/questions/76305897/maven-build-fails-after-upgrading-to-maven-source-plugin-from-3-2-1-to-3-3-0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5f2650e803e..b8526c07c9a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -783,7 +783,7 @@
                             <execution>
                                 <id>attach-sources</id>
                                 <goals>
-                                    <goal>jar</goal>
+                                    <goal>jar-no-fork</goal>
                                 </goals>
                             </execution>
                         </executions>