forked from funcool/octet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (27 loc) · 1.24 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 funcool/octet "1.1.2"
:description "A clojure(script) library for work with binary data."
:url "https://github.com/funcool/octet"
:license {:name "Public Domain"
:url "http://unlicense.org/"}
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.10.339" :scope "provided"]
[io.netty/netty-buffer "4.1.30.Final"]]
:source-paths ["src"]
:test-paths ["test"]
:jar-exclusions [#"\.cljx|\.swp|\.swo|\.DS_Store|user.clj"]
:codeina {:sources ["src"]
:reader :clojure
:exclude [octet.spec.basic
octet.spec.string
octet.spec.collections]
:target "doc/dist/latest/api"
:src-uri "http://github.com/funcool/codeina/blob/master/"
:src-uri-prefix "#L"}
:profiles
{:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]]
:aliases {"test-all" ["with-profile" "dev,1.8:dev,1.7:dev" "test"]}
:global-vars {*warn-on-reflection* false}
:plugins [[funcool/codeina "0.5.0"]
[lein-ancient "0.6.15"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}})