-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
22 lines (20 loc) · 885 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject clj-mavlink "0.1.3-SNAPSHOT"
:description "Clojure MAVLink"
:url "https://github.com/WickedShell/clj-mavlink"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.2"]
[org.clojure/core.async "1.6.681"]
[org.clojure/data.zip "1.1.0"]
]
:profiles {:dev {:dependencies [ [criterium "0.4.4"] ]
:java-source-paths ["test/mavlink"
"src/java"]
}
}
:plugins [[perforate "0.3.4"]]
:repositories [["releases" {:url "https://repo.clojars.org"
:creds :gpg}],
["snapshots" {:url "https://repo.clojars.org"
:creds :gpg}]]
:global-vars {*warn-on-reflection* true})