This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch 2.7.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit dcb21f7e9db667d83e0f06a8668c6bb9b1ed049b Author: Peter Palaga <[email protected]> AuthorDate: Tue Feb 8 16:43:13 2022 +0100 Exclude json-simple from camel-slack, workaround for CAMEL-17619 --- poms/bom/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index 322d9dc..8aeee35 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -2352,6 +2352,12 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-slack</artifactId> <version>${camel.version}</version> + <exclusions> + <exclusion><!-- Can be removed when the fix for https://issues.apache.org/jira/browse/CAMEL-17619 reaches us, probably with Camel 3.16 --> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.camel</groupId>
