File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
lucene-next/backend/lucene/src/main/java/org/hibernate/search/backend/lucene/lowlevel/codec/impl Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 19
19
<deploy .skip>false</deploy .skip>
20
20
21
21
<!-- These versions will be checked against the ones resolved by Maven for the project in the enforcer rule -->
22
- <version .bom.org.apache.lucene>10.2.2 </version .bom.org.apache.lucene>
22
+ <version .bom.org.apache.lucene>10.3.0 </version .bom.org.apache.lucene>
23
23
<version .bom.org.jboss.logging.processor>3.0.4.Final</version .bom.org.jboss.logging.processor>
24
24
</properties >
25
25
Original file line number Diff line number Diff line change 44
44
<javadoc .org.apache.lucene.queryparser.url>https://lucene.apache.org/core/${javadoc.org.apache.lucene.tag} /queryparser/</javadoc .org.apache.lucene.queryparser.url>
45
45
46
46
<version .com.carrotsearch.hppc>0.10.0</version .com.carrotsearch.hppc>
47
- <version .org.apache.lucene.next>10.2.2 </version .org.apache.lucene.next>
47
+ <version .org.apache.lucene.next>10.3.0 </version .org.apache.lucene.next>
48
48
49
49
<!-- >>> Elasticsearch -->
50
50
<!-- The version of the Elasticsearch client used by Hibernate Search, independently of the version of the remote cluster -->
Original file line number Diff line number Diff line change 13
13
import org .apache .lucene .codecs .Codec ;
14
14
import org .apache .lucene .codecs .FilterCodec ;
15
15
import org .apache .lucene .codecs .KnnVectorsFormat ;
16
- import org .apache .lucene .codecs .lucene101 . Lucene101Codec ;
16
+ import org .apache .lucene .codecs .lucene103 . Lucene103Codec ;
17
17
import org .apache .lucene .codecs .perfield .PerFieldKnnVectorsFormat ;
18
18
19
19
public class HibernateSearchLuceneCodec extends FilterCodec {
20
20
21
- public static final Codec DEFAULT_CODEC = new Lucene101Codec ();
21
+ public static final Codec DEFAULT_CODEC = new Lucene103Codec ();
22
22
23
23
private final KnnVectorsFormat knnVectorsFormat ;
24
24
You can’t perform that action at this time.
0 commit comments