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 f6c439ebfd2 Attempting to fix precommit by marking the cuvs-lucene lib
as a snapshot
f6c439ebfd2 is described below
commit f6c439ebfd2fcd00e5203a0056830dcc88138fb4
Author: Ishan Chattopadhyaya <[email protected]>
AuthorDate: Sat Nov 1 11:27:20 2025 +0530
Attempting to fix precommit by marking the cuvs-lucene lib as a snapshot
---
solr/modules/cuvs/build.gradle | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/solr/modules/cuvs/build.gradle b/solr/modules/cuvs/build.gradle
index d00eed9b1a3..5c477d60f60 100644
--- a/solr/modules/cuvs/build.gradle
+++ b/solr/modules/cuvs/build.gradle
@@ -20,7 +20,9 @@ apply plugin: 'java-library'
description = 'cuVS plugin'
dependencies {
- implementation libs.cuvs.lucene
+ implementation(libs.cuvs.lucene) {
+ changing = true
+ }
implementation project(':solr:core')
implementation project(':solr:solrj')
implementation libs.apache.lucene.core