add gradle build script to plugin
This commit is contained in:
parent
5411bb1123
commit
c6f4cd68da
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* Licensed to Elasticsearch under one or more contributor
|
||||||
|
* license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright
|
||||||
|
* ownership. Elasticsearch licenses this file to you under
|
||||||
|
* the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
* not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
esplugin {
|
||||||
|
description 'Plugin that allows to configure pipelines to preprocess documents before indexing'
|
||||||
|
classname 'org.elasticsearch.plugin.ingest.IngestPlugin'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
testCompile 'org.elasticsearch:securemock:1.1'
|
||||||
|
}
|
||||||
|
|
||||||
|
compileJava.options.compilerArgs << "-Xlint:-rawtypes,-unchecked"
|
||||||
|
compileTestJava.options.compilerArgs << "-Xlint:-rawtypes,-unchecked"
|
|
@ -18,6 +18,7 @@ String[] projects = [
|
||||||
'plugins:discovery-ec2',
|
'plugins:discovery-ec2',
|
||||||
'plugins:discovery-gce',
|
'plugins:discovery-gce',
|
||||||
'plugins:discovery-multicast',
|
'plugins:discovery-multicast',
|
||||||
|
'plugins:ingest',
|
||||||
'plugins:lang-expression',
|
'plugins:lang-expression',
|
||||||
'plugins:lang-groovy',
|
'plugins:lang-groovy',
|
||||||
'plugins:lang-javascript',
|
'plugins:lang-javascript',
|
||||||
|
|
Loading…
Reference in New Issue