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
The following commit(s) were added to refs/heads/main by this push: new ddf43dc camel-solr use same version of protobuf for testing ddf43dc is described below commit ddf43dc3133defbd8fb4fd370be59d44ec44943c Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Mar 7 15:27:35 2022 +0100 camel-solr use same version of protobuf for testing --- components/camel-solr/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/camel-solr/pom.xml b/components/camel-solr/pom.xml index 9db444b..119a448 100644 --- a/components/camel-solr/pom.xml +++ b/components/camel-solr/pom.xml @@ -94,6 +94,10 @@ <version>${solr-version}</version> <scope>test</scope> <exclusions> + <exclusion> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + </exclusion> <!-- exclude rome 0.9 which is not a valid Maven artifact --> <!-- rome is not a needed dependency --> <exclusion> @@ -107,6 +111,12 @@ </exclusions> </dependency> <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + <version>${protobuf-version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-cell</artifactId> <version>${solr-version}</version>