Re: gradle build gives spurious warnings about unferenced license files?

2024-08-29 Thread Dawid Weiss
> > Only tangentially related, I wanna do a gradle bump (from 8.8 to 8.10), to > get better support for JDK 23, but ran into a couple of issues with how we > define properties - might be that we need a little tweaking in how we do > this. Maybe a gradle bump could fix the warnings, I dunno. > Hi C

Re: gradle build gives spurious warnings about unferenced license files?

2024-08-29 Thread Uwe Schindler
Problem already solved! It was caused by this commit: https://github.com/apache/lucene/pull/12150 The problem is that the tasks for license checks have side-effects on global properties, so they have to run. The above optimization added a new output to one of the tasks, so it wan'st consistent

Re: Lucene 10.0 and 9.12 blockers

2024-08-29 Thread Luca Cavanna
For Lucene 10.0, I have two topics to raise: 1. Remove the deprecated IndexSearcher#search(Query, Collector) in favour of IndexSearcher#search(Query, CollectorManager) ( https://github.com/apache/lucene/issues/12892): this involves removing the leftover usages in facet, grouping, join and test-fr