-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
25 lines (25 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
(defproject org.pojagi/linen "5.0.0-SNAPSHOT"
:description "Implementation of an interpreter for linen, a domain specific
language for modeling coordinated, distributed processes."
:url "https://github.com/tjb1982/linen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.logging "0.3.1"]
[ch.qos.logback/logback-classic "1.1.3"]
[stencil "0.5.0"]
[cheshire "5.8.0"]
[clj-ssh "0.5.14"]
[org.pojagi/clj-yaml "1.1.1-SNAPSHOT"]
;[co.nclk/flax "2.0.5"]
[org.pojagi/flax "5.0.0-SNAPSHOT"]
]
:profiles {:dev {:dependencies [[pjstadig/humane-test-output "0.8.3"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)
(require '[linen.core :as linen]
'[linen.core-test :refer :all])]
:resource-paths ["test/resources"]}}
:java-source-paths ["src/java" "src/native"]
:aot :all
:main linen.core)