-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
31 lines (31 loc) · 1.73 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defproject mailindex "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/tools.cli "0.3.1"]
[org.clojure/data.json "1.0.0"]
[org.apache.lucene/lucene-core "8.8.2"]
[org.apache.lucene/lucene-queryparser "8.8.2"]
[org.apache.lucene/lucene-analyzers-common "8.8.2"]
[org.apache.lucene/lucene-highlighter "8.8.2"]
[com.climate/claypoole "1.1.4"]
[javax.mail/mail "1.4.7"]
[org.apache.tika/tika-core "1.5"]
[org.apache.tika/tika-parsers "1.5"
:exclusions [edu.ucar/netcdf
commons-httpclient/commons-httpclient
org.apache.james/apache-mime4j
org.apache.commons/commons-compress
org.apache.pdfbox/pdfbox
org.bouncycastle/bcmail-jdk15
org.bouncycastle/bcprov-jdk15
org.apache.poi/poi
org.apache.poi/poi-scratchpad
org.apache.poi/poi-ooxml
org.apache.geronimo.specs/geronimo-stax-api_1.0_spec
asm/asm
com.drewnoakes/metadata-extractor
de.l3s.boilerpipe/boilerpipe]]]
:profiles {:dev {:resource-paths ["test/resources"]}}
:jar-exclusions [#"BCKEY.SF"]
:global-vars {*warn-on-reflection* true}
:aot [net.dishevelled.mailindex.MailindexURLFilter net.dishevelled.mailindex.MailindexURLFilterFactory net.dishevelled.mailindex]
:main net.dishevelled.mailindex)