forked from oracle-samples/clara-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
39 lines (34 loc) · 1.79 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
32
33
34
35
36
37
38
39
(defproject org.toomuchcode/clara-examples "0.2.0-SNAPSHOT"
:description "Clara Example Rules"
:url "https://github.com/rbrush/clara-examples"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.google.guava/guava "15.0"] ; Explicitly pull new Guava version for dependency conflicts.
[org.clojure/clojure "1.7.0"]
[org.toomuchcode/clara-rules "0.8.8"]
[prismatic/schema "0.4.3"]
;; Dependencies for ClojureScript example.
[prismatic/dommy "0.1.3"]
[org.clojure/clojurescript "0.0-3308"]
;; Dependency for time-based rules example.
[clj-time "0.6.0"]]
:plugins [[lein-cljsbuild "1.0.4"]]
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:java-source-paths ["src/main/java"]
:main clara.examples
:hooks [leiningen.cljsbuild]
:cljsbuild {:builds [{:source-paths ["src/main/clojurescript"]
:jar true
:compiler {:output-to "resources/public/js/examples.js"
:optimizations :advanced}}]}
;; Austin for the ClojureScript REPL.
:profiles {:dev {:plugins [[com.cemerick/austin "0.1.6"]]}}
:scm {:name "git"
:url "https://github.com/rbrush/clara-examples.git"}
:pom-addition [:developers [:developer {:id "rbrush"}
[:name "Ryan Brush"]
[:url "http://www.toomuchcode.org"]]]
:repositories [["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"}]]
:deploy-repositories [["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
:creds :gpg}]])