Add Java dependency for search module to Gradle

Version 2.2.0 of Lucene should be the correct version

⚠️ Modules were not tested after upgrade
This commit is contained in:
Tobi Schäfer 2021-04-05 10:55:39 +02:00
parent aea04da690
commit 9e2bf074b7
4 changed files with 11 additions and 9 deletions

View file

@ -31,8 +31,8 @@
*/
// take care of any dependencies
app.addRepository('modules/helma/lucene-core.jar');
app.addRepository('modules/helma/lucene-analyzers.jar');
app.addRepository('modules/helma/lucene-core-2.2.0.jar');
app.addRepository('modules/helma/lucene-analyzers-2.2.0.jar');
if (!global.helma) {

View file

@ -1,6 +1,8 @@
dependencies {
runtime 'ch.ethz.ganymed:ganymed-ssh2:build208'
runtime 'net.sourceforge.jexcelapi:jxl:2.5.7'
runtime 'org.apache.lucene:lucene-analyzers:2.2.0'
runtime 'org.apache.lucene:lucene-core:2.2.0'
}
task deps(type: Copy) {