[Rename] modules/geo (#201)

This commit refactors the geo module as part of the Elasticsearch to OpenSearch renaming.

Signed-off-by: Rabi Panda <adnapibar@gmail.com>
This commit is contained in:
Rabi Panda 2021-03-04 16:05:19 -08:00 committed by Nick Knize
parent 3cdff4e817
commit 3b73223abb
4 changed files with 6 additions and 6 deletions

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
apply plugin: 'elasticsearch.yaml-rest-test'
apply plugin: 'opensearch.yaml-rest-test'
esplugin {
description 'Placeholder plugin for geospatial features in ES. only registers geo_shape field mapper for now'
classname 'org.elasticsearch.geo.GeoPlugin'
description 'Placeholder plugin for geospatial features in OpenSearch. only registers geo_shape field mapper for now'
classname 'org.opensearch.geo.GeoPlugin'
}
restResources {

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.geo;
package org.opensearch.geo;
import org.elasticsearch.index.mapper.GeoShapeFieldMapper;
import org.elasticsearch.index.mapper.Mapper;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.geo;
package org.opensearch.geo;
import com.carrotsearch.randomizedtesting.annotations.Name;
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;

View File

@ -31,7 +31,7 @@ import org.elasticsearch.common.unit.DistanceUnit;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.XContentFactory;
import org.elasticsearch.common.xcontent.XContentType;
import org.elasticsearch.geo.GeoPlugin;
import org.opensearch.geo.GeoPlugin;
import org.elasticsearch.index.mapper.MapperParsingException;
import org.elasticsearch.index.query.MatchPhraseQueryBuilder;
import org.elasticsearch.index.query.MultiMatchQueryBuilder;