forked from ruedigergad/clj-net-pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
28 lines (28 loc) · 1.23 KB
/
Copy pathproject.clj
File metadata and controls
28 lines (28 loc) · 1.23 KB
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
;(defproject clj-net-pcap "1.7.2"
(defproject clj-net-pcap "1.8.0-SNAPSHOT"
:description "clj-net-pcap is a wrapper/adapter/facade (No matter how you want to call it.)
around jNetPcap that enables and eases packet capturing and processing with Clojure."
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/tools.cli "0.4.1"]
[cli4clj "1.7.1"]
[clj-assorted-utils "1.18.3"]
[jnetpcap "1.4.r1425-1g"]]
:min-lein-version "2.0.0"
:aot [#"^clj-net-pcap.*"]
:global-vars {*warn-on-reflection* true}
:main clj-net-pcap.main
:java-source-paths ["src-java"]
:javac-options ["-target" "1.6" "-source" "1.6"]
; :jvm-opts ["-Dnio.blocksize=1048576"]
:omit-source true
:html5-docs-docs-dir "ghpages/doc"
:html5-docs-ns-includes #"^clj-net-pcap.*"
:html5-docs-repository-url "https://github.com/ruedigergad/clj-net-pcap/blob/master"
:test2junit-output-dir "ghpages/test-results"
:test2junit-run-ant true
:test-selectors {:default (complement :main-cli)
:main-cli :main-cli}
:plugins [[lein-cloverage "1.0.2"]]
:profiles {:uberjar {:source-paths ["src" "src-main"]}
:run {:source-paths ["src" "src-main"]}}
)