-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathproject.clj
More file actions
33 lines (33 loc) · 1.23 KB
/
project.clj
File metadata and controls
33 lines (33 loc) · 1.23 KB
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
(defproject propaganda "0.2.1-SNAPSHOT"
:description "(Hopefully) extensible propagator library"
:url "http://github.com/tgk/propaganda"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]]
:plugins [[lein-release "1.0.4"]
[lein-cljsbuild "0.3.2"]]
:hooks [leiningen.cljsbuild]
:source-paths ["src"]
:lein-release {:scm :git
:deploy-via :shell
:shell ["lein" "deploy" "clojars"]}
:clojurescript? true
:cljsbuild
{:builds {:main
{:source-paths ["crossover"]
:jar true
:compiler {:output-to "js/propaganda.js"
:optimizations :advanced
:pretty-print false}}
:dev
{:source-paths ["crossover"]
:compiler {:optimizations :whitespace
:pretty-print true}}}
:crossovers [propaganda.values
propaganda.system
propaganda.generic-operators
propaganda.support-values
propaganda.intervals.common
propaganda.intervals.system]
:crossover-jar true
:crossover-path "crossover"})