This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch add-implicit-dependency in repository https://gitbox.apache.org/repos/asf/camel.git
commit 78402b6cf2784db9664e4001b5d6b0b509d3ea31 Author: Nicolas Filotto <[email protected]> AuthorDate: Thu Jun 1 18:40:37 2023 +0200 Add camel-catalog as dependency to prevent parallel build failures --- dsl/camel-endpointdsl/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dsl/camel-endpointdsl/pom.xml b/dsl/camel-endpointdsl/pom.xml index b641fffd4c5..1fba0e6e0c6 100644 --- a/dsl/camel-endpointdsl/pom.xml +++ b/dsl/camel-endpointdsl/pom.xml @@ -94,6 +94,12 @@ </exclusion> </exclusions> </dependency> + <!-- Add it explicitly to prevent parallel build failure --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-catalog</artifactId> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId>
