xref: /Lucene/lucene/memory/src/java/module-info.java (revision d2c98912eb224e3ee8ba65914ccf138f25b75f69)
1*d2c98912SDawid Weiss /*
2*d2c98912SDawid Weiss  * Licensed to the Apache Software Foundation (ASF) under one or more
3*d2c98912SDawid Weiss  * contributor license agreements.  See the NOTICE file distributed with
4*d2c98912SDawid Weiss  * this work for additional information regarding copyright ownership.
5*d2c98912SDawid Weiss  * The ASF licenses this file to You under the Apache License, Version 2.0
6*d2c98912SDawid Weiss  * (the "License"); you may not use this file except in compliance with
7*d2c98912SDawid Weiss  * the License.  You may obtain a copy of the License at
8*d2c98912SDawid Weiss  *
9*d2c98912SDawid Weiss  *     http://www.apache.org/licenses/LICENSE-2.0
10*d2c98912SDawid Weiss  *
11*d2c98912SDawid Weiss  * Unless required by applicable law or agreed to in writing, software
12*d2c98912SDawid Weiss  * distributed under the License is distributed on an "AS IS" BASIS,
13*d2c98912SDawid Weiss  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*d2c98912SDawid Weiss  * See the License for the specific language governing permissions and
15*d2c98912SDawid Weiss  * limitations under the License.
16*d2c98912SDawid Weiss  */
17*d2c98912SDawid Weiss 
18*d2c98912SDawid Weiss /** Single-document in-memory index implementation */
19*d2c98912SDawid Weiss module org.apache.lucene.memory {
20*d2c98912SDawid Weiss   requires org.apache.lucene.core;
21*d2c98912SDawid Weiss 
22*d2c98912SDawid Weiss   exports org.apache.lucene.index.memory;
23*d2c98912SDawid Weiss }
24