You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2022/04/26 02:51:03 UTC

[solr] branch branch_9x updated: SOLR-16157: Fix introduced dependency issues

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

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


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 1a21a825a45 SOLR-16157: Fix introduced dependency issues
1a21a825a45 is described below

commit 1a21a825a45c50718f059838c4ef3794fc4fecb9
Author: Houston Putman <ho...@apache.org>
AuthorDate: Tue Apr 26 11:35:01 2022 +0900

    SOLR-16157: Fix introduced dependency issues
    
    (cherry picked from commit ef397cdb32ee39a2f2772ff5a6c9b7d6f5aabf07)
---
 solr/core/build.gradle                  | 3 +++
 solr/modules/s3-repository/build.gradle | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/solr/core/build.gradle b/solr/core/build.gradle
index c023bb90db2..6f7a93b154e 100644
--- a/solr/core/build.gradle
+++ b/solr/core/build.gradle
@@ -65,6 +65,9 @@ dependencies {
 
   // Jetty (both for client and server, which is only used by EmbeddedSolrServer)
   implementation 'org.eclipse.jetty:jetty-alpn-server'
+  runtimeOnly('org.eclipse.jetty:jetty-alpn-java-server', {
+    exclude group: "org.eclipse.jetty.alpn", module: "alpn-api"
+  })
   jettyClientImplementation 'org.eclipse.jetty:jetty-http'
   jettyClientImplementation 'org.eclipse.jetty:jetty-io'
   implementation 'org.eclipse.jetty:jetty-rewrite'
diff --git a/solr/modules/s3-repository/build.gradle b/solr/modules/s3-repository/build.gradle
index 7c78b4d5c55..b1db54140ef 100644
--- a/solr/modules/s3-repository/build.gradle
+++ b/solr/modules/s3-repository/build.gradle
@@ -73,6 +73,8 @@ dependencies {
 
   testImplementation 'commons-io:commons-io'
   testImplementation 'org.apache.commons:commons-lang3'
+
+  testRuntimeOnly 'org.eclipse.jetty:jetty-webapp'
 }
 
 test {