|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- Licensed to Elasticsearch under one or more contributor |
| 3 | +license agreements. See the NOTICE file distributed with this work for additional |
| 4 | +information regarding copyright ownership. ElasticSearch licenses this file to you |
| 5 | +under the Apache License, Version 2.0 (the "License"); you may not use this |
| 6 | +file except in compliance with the License. You may obtain a copy of the |
| 7 | +License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by |
| 8 | +applicable law or agreed to in writing, software distributed under the License |
| 9 | +is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 10 | +KIND, either express or implied. See the License for the specific language |
| 11 | +governing permissions and limitations under the License. --> |
| 12 | + |
| 13 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 14 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 15 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 16 | + <modelVersion>4.0.0</modelVersion> |
| 17 | + |
| 18 | + <groupId>org.elasticsearch.plugin</groupId> |
| 19 | + <artifactId>elasticsearch-delete-by-query</artifactId> |
| 20 | + |
| 21 | + <packaging>jar</packaging> |
| 22 | + <name>Elasticsearch Delete By Query plugin</name> |
| 23 | + <description>The Delete By Query plugin allows to delete documents in Elasticsearch with a single query.</description> |
| 24 | + |
| 25 | + <parent> |
| 26 | + <groupId>org.elasticsearch</groupId> |
| 27 | + <artifactId>elasticsearch-plugin</artifactId> |
| 28 | + <version>2.0.0-SNAPSHOT</version> |
| 29 | + </parent> |
| 30 | + |
| 31 | + <properties> |
| 32 | + <tests.ifNoTests>warn</tests.ifNoTests> |
| 33 | + <tests.rest.suite>delete_by_query</tests.rest.suite> |
| 34 | + </properties> |
| 35 | + |
| 36 | + <build> |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>org.apache.maven.plugins</groupId> |
| 40 | + <artifactId>maven-assembly-plugin</artifactId> |
| 41 | + </plugin> |
| 42 | + </plugins> |
| 43 | + </build> |
| 44 | + |
| 45 | +</project> |
0 commit comments