2015-11-06 17:04:59 -05:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import org.elasticsearch.gradle.ElasticsearchProperties
|
|
|
|
|
|
|
|
esplugin {
|
2015-11-07 18:13:05 -05:00
|
|
|
name 'mapper-attachments'
|
2015-11-06 17:04:59 -05:00
|
|
|
description 'The mapper attachments plugin adds the attachment type to Elasticsearch using Apache Tika.'
|
2015-11-07 17:45:16 -05:00
|
|
|
classname 'org.elasticsearch.mapper.attachments.MapperAttachmentsPlugin'
|
2015-11-06 17:04:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-11-07 21:00:00 -05:00
|
|
|
// mandatory for tika
|
|
|
|
compile('org.apache.tika:tika-core:1.11')
|
|
|
|
compile('org.apache.tika:tika-parsers:1.11') {
|
|
|
|
transitive = false
|
2015-11-06 17:04:59 -05:00
|
|
|
}
|
2015-11-07 21:00:00 -05:00
|
|
|
compile('commons-io:commons-io:2.4')
|
|
|
|
|
|
|
|
// character set detection
|
|
|
|
compile('com.googlecode.juniversalchardet:juniversalchardet:1.0.3')
|
|
|
|
|
|
|
|
// external parser libraries
|
|
|
|
// HTML
|
|
|
|
compile('org.ccil.cowan.tagsoup:tagsoup:1.2.1')
|
|
|
|
// Adobe PDF
|
|
|
|
compile('org.apache.pdfbox:pdfbox:1.8.10')
|
|
|
|
compile('org.bouncycastle:bcmail-jdk15on:1.52')
|
|
|
|
// OpenOffice
|
|
|
|
compile('org.apache.poi:poi-ooxml:3.13')
|
|
|
|
// MS Office
|
|
|
|
compile('org.apache.poi:poi-scratchpad:3.13')
|
|
|
|
// Apple iWork
|
|
|
|
compile('org.apache.commons:commons-compress:1.10')
|
2015-11-06 17:04:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
compileJava.options.compilerArgs << '-Xlint:-cast,-deprecation,-rawtypes'
|
|
|
|
|
|
|
|
forbiddenPatterns {
|
|
|
|
exclude '**/*.docx'
|
|
|
|
exclude '**/*.pdf'
|
|
|
|
}
|