Skip to content

Commit

Permalink
Adding module exports to other Lucene modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiss committed May 27, 2024
1 parent 7e42487 commit 317c286
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion lucene/core/src/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,32 @@
exports org.apache.lucene.util.fst;
exports org.apache.lucene.util.graph;
exports org.apache.lucene.util.hnsw;
exports org.apache.lucene.util.hppc;
exports org.apache.lucene.util.mutable;
exports org.apache.lucene.util.packed;

// Only export internal packages to the test framework.
exports org.apache.lucene.internal.tests to
org.apache.lucene.test_framework;

// Export internally repackaged HPPC classes to other Lucene components.
exports org.apache.lucene.util.hppc to
org.apache.lucene.analysis.common,
org.apache.lucene.analysis.icu,
org.apache.lucene.analysis.kuromoji,
org.apache.lucene.analysis.smartcn,
org.apache.lucene.analysis.stempel,
org.apache.lucene.benchmark,
org.apache.lucene.facet,
org.apache.lucene.grouping,
org.apache.lucene.highlighter,
org.apache.lucene.join,
org.apache.lucene.misc,
org.apache.lucene.queryparser,
org.apache.lucene.sandbox,
org.apache.lucene.spatial3d,
org.apache.lucene.spatial_extras,
org.apache.lucene.suggest;

// Open certain packages for the test framework (ram usage tester).
opens org.apache.lucene.document to
org.apache.lucene.test_framework;
Expand Down

0 comments on commit 317c286

Please sign in to comment.