Registration and fuzzy search in progress

This commit is contained in:
Claude Brisson
2023-12-15 13:45:23 +01:00
parent 519eca8af3
commit ea44f6068e
26 changed files with 708 additions and 102 deletions

View File

@@ -17,6 +17,7 @@
<url>TODO</url>
<properties>
<pac4j.version>5.7.1</pac4j.version>
<lucene.version>9.9.0</lucene.version>
</properties>
<build>
<defaultGoal>package</defaultGoal>
@@ -247,6 +248,22 @@
<artifactId>velocity-engine-core</artifactId>
<version>2.4-SNAPSHOT</version>
</dependency>
<!-- indexing -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analysis-common</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>${lucene.version}</version>
</dependency>
<!-- tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>