You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/03/07 14:38:24 UTC

[camel] 03/03: camel-solr use same version of protobuf for testing

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

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

commit ddf43dc3133defbd8fb4fd370be59d44ec44943c
Author: Claus Ibsen <cl...@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>