This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch release/4.0.0-RC1 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 63f80fd9fd6f40d5d0b31d3c1703936020573781 Author: Claus Ibsen <[email protected]> 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>
