mirror of https://github.com/apache/lucene.git
74 lines
4.1 KiB
Groovy
74 lines
4.1 KiB
Groovy
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF 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.
|
|
*/
|
|
|
|
apply plugin: 'java-library'
|
|
|
|
dependencies {
|
|
implementation project(':solr:core')
|
|
|
|
// We export tika because other contribs depend on it (and its submodules)
|
|
// and we don't want to duplicate the dependency across different contribs.
|
|
api ('org.apache.tika:tika-core') { transitive = false }
|
|
api ('org.apache.tika:tika-parsers') { transitive = false }
|
|
|
|
runtimeOnly ('org.apache.james:apache-mime4j-core') { transitive = false }
|
|
runtimeOnly ('org.apache.james:apache-mime4j-dom') { transitive = false }
|
|
runtimeOnly ('org.apache.tika:tika-java7') { transitive = false }
|
|
runtimeOnly ('org.apache.tika:tika-xmp') { transitive = false }
|
|
|
|
implementation ('com.healthmarketscience.jackcess:jackcess') { transitive = false }
|
|
implementation ('com.healthmarketscience.jackcess:jackcess-encrypt') { transitive = false }
|
|
implementation ('org.gagravarr:vorbis-java-tika') { transitive = false }
|
|
implementation ('org.gagravarr:vorbis-java-core') { transitive = false }
|
|
implementation ('org.apache.commons:commons-compress') { transitive = false }
|
|
implementation ('org.apache.commons:commons-csv') { transitive = false }
|
|
implementation ('org.apache.pdfbox:pdfbox') { transitive = false }
|
|
implementation ('org.apache.pdfbox:pdfbox-tools') { transitive = false }
|
|
implementation ('org.apache.pdfbox:fontbox') { transitive = false }
|
|
implementation ('org.apache.pdfbox:jempbox') { transitive = false }
|
|
implementation ('org.bouncycastle:bcmail-jdk15on') { transitive = false }
|
|
implementation ('org.bouncycastle:bcpkix-jdk15on') { transitive = false }
|
|
implementation ('org.bouncycastle:bcprov-jdk15on') { transitive = false }
|
|
implementation ('org.apache.poi:poi') { transitive = false }
|
|
implementation ('org.apache.poi:poi-scratchpad') { transitive = false }
|
|
implementation ('org.apache.poi:poi-ooxml') { transitive = false }
|
|
implementation ('org.apache.poi:poi-ooxml-schemas') { transitive = false }
|
|
implementation ('org.apache.xmlbeans:xmlbeans') { transitive = false }
|
|
implementation ('org.apache.commons:commons-collections4') { transitive = false }
|
|
implementation ('com.github.virtuald:curvesapi') { transitive = false }
|
|
implementation ('org.ccil.cowan.tagsoup:tagsoup') { transitive = false }
|
|
implementation ('com.googlecode.mp4parser:isoparser') { transitive = false }
|
|
implementation ('org.aspectj:aspectjrt') { transitive = false }
|
|
implementation ('com.drewnoakes:metadata-extractor') { transitive = false }
|
|
implementation ('de.l3s.boilerpipe:boilerpipe') { transitive = false }
|
|
implementation ('com.rometools:rome') { transitive = false }
|
|
implementation ('com.rometools:rome-utils') { transitive = false }
|
|
implementation ('org.jdom:jdom2') { transitive = false }
|
|
implementation ('com.googlecode.juniversalchardet:juniversalchardet') { transitive = false }
|
|
implementation ('org.tukaani:xz') { transitive = false }
|
|
implementation ('com.adobe.xmp:xmpcore') { transitive = false }
|
|
implementation ('com.pff:java-libpst') { transitive = false }
|
|
implementation ('org.tallison:jmatio') { transitive = false }
|
|
implementation ('com.epam:parso') { transitive = false }
|
|
implementation ('org.brotli:dec') { transitive = false }
|
|
implementation ('xerces:xercesImpl') { transitive = false }
|
|
|
|
implementation ('com.ibm.icu:icu4j')
|
|
|
|
testImplementation project(':solr:test-framework')
|
|
}
|