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

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


The following commit(s) were added to refs/heads/main by this push:
     new ab2a10a102f build, solrj-zookeeper: add explicit dependency on 
:solr:api
ab2a10a102f is described below

commit ab2a10a102fc095e7109a29bf33460d2ccfd17e9
Author: David Smiley <[email protected]>
AuthorDate: Mon Aug 25 22:56:39 2025 -0400

    build, solrj-zookeeper: add explicit dependency on :solr:api
    
    Arguably shouldn't be necessary but dependency checker doesn't recognize 
the ramifications of an "api" dependency transitivity.
---
 solr/solrj-zookeeper/build.gradle | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/solr/solrj-zookeeper/build.gradle 
b/solr/solrj-zookeeper/build.gradle
index 37faa638b3c..c4c776095d1 100644
--- a/solr/solrj-zookeeper/build.gradle
+++ b/solr/solrj-zookeeper/build.gradle
@@ -31,11 +31,10 @@ dependencies {
     }
 
     implementation project(':solr:solrj')
+    implementation project(':solr:api')
 
-    // declare dependencies we use even though already declared by solrj-core
     implementation libs.slf4j.api
 
-
     implementation(libs.apache.curator.client, {
         exclude group: 'org.apache.zookeeper', module: 'zookeeper'
     })

Reply via email to