You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ma...@apache.org on 2022/06/01 10:16:58 UTC

[solr-sandbox] branch crossdc-wip updated: Producer only needs one of the many runtime dependencies. (#18)

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

markrmiller pushed a commit to branch crossdc-wip
in repository https://gitbox.apache.org/repos/asf/solr-sandbox.git


The following commit(s) were added to refs/heads/crossdc-wip by this push:
     new 5ce87d5  Producer only needs one of the many runtime dependencies. (#18)
5ce87d5 is described below

commit 5ce87d5f0b9dbc482743164dcae9e4b8a3d831d4
Author: Mark Robert Miller <ma...@apache.org>
AuthorDate: Wed Jun 1 05:16:55 2022 -0500

    Producer only needs one of the many runtime dependencies. (#18)
---
 crossdc-producer/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crossdc-producer/build.gradle b/crossdc-producer/build.gradle
index 728706b..1447b7a 100644
--- a/crossdc-producer/build.gradle
+++ b/crossdc-producer/build.gradle
@@ -24,7 +24,6 @@ version '1.0-SNAPSHOT'
 
 repositories {
     mavenCentral()
-    jcenter()
 }
 
 dependencies {
@@ -61,6 +60,7 @@ subprojects {
 
 task copyToLib(type: Copy) {
     into "$buildDir/libs"
+    include "kafka-clients-*.jar"
     from configurations.runtimeClasspath
 }