mirror of
https://github.com/apache/lucene.git
synced 2025-02-09 11:35:14 +00:00
57 lines
3.3 KiB
Groovy
57 lines
3.3 KiB
Groovy
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')
|
|
}
|