-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
27 lines (21 loc) · 1.02 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
(defproject grafter/vocabularies "0.3.10-SNAPSHOT"
:description "Vocabularies for grafting Linked-data"
:url "http://grafter.org"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:dependencies [[org.clojure/clojure "1.9.0"]]
:profiles {:dev {:dependencies [[org.clojure/clojurescript "1.10.339"]]}}
:plugins [[lein-doo "0.1.10"]]
:cljsbuild
{:builds [{:id "test-nashorn"
:source-paths ["src" "test"]
:compiler {:output-to "target/cljs/test-nashorn/test-grafter-vocabularies.js"
:output-dir "target/cljs/test-nashorn/out"
:main grafter.vocabularies.test-runner
:optimizations :simple
:process-shim false}}]}
:aliases {"test-nashorn" ["doo" "nashorn" "test-nashorn" "once"]
"test-all" ["do" ["test"] ["test-nashorn"]]
})