This is an automated email from the ASF dual-hosted git repository.
ishan pushed a commit to branch jira/solr-17892-fix-precommit
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/jira/solr-17892-fix-precommit
by this push:
new 50568f3815d Restricting the searchscale maven to only serve
cuvs-lucene, nothing else
50568f3815d is described below
commit 50568f3815d5a0955287cb0635390936bc898173
Author: Ishan Chattopadhyaya <[email protected]>
AuthorDate: Sat Nov 1 12:14:56 2025 +0530
Restricting the searchscale maven to only serve cuvs-lucene, nothing else
---
gradle/globals.gradle | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gradle/globals.gradle b/gradle/globals.gradle
index 4834c5a4cce..83ed4ea7925 100644
--- a/gradle/globals.gradle
+++ b/gradle/globals.gradle
@@ -29,6 +29,10 @@ allprojects {
maven {
name "SearchScale"
url "https://maven.searchscale.com/snapshots"
+ content {
+ // Only look for cuvs-lucene in SearchScale repo (not yet on Maven
Central)
+ includeGroup "com.nvidia.cuvs.lucene"
+ }
}
/* Reenable this if we need it again in future
maven {