-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (26 loc) · 1.29 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
(defproject fixturex/fixturex "0.3.2"
:description "A library of helpful test fixture macros and functions."
:url "http://www.ryanmcg.com/fixturex/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]]
:repack [{:type :clojure
:levels 1
:path "src"}]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["repack" "split"]]
:scm {:name "git"
:url "https://github.com/RyanMcG/fixturex"}
:deploy-repositories [["snapshots" :clojars]
["releases" :clojars]]
:profiles {:dev {:dependencies [[incise "0.5.0"]
[com.ryanmcg/incise-codox "0.1.0"]
[com.ryanmcg/incise-vm-layout "0.5.0"]]
:plugins [[lein-repack "0.2.10"]]
:aliases {"incise" ^:pass-through-help ["run" "-m" "incise.core"]}}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha4"]]}})