-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 732 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject ns-tracker "1.0.0"
:description "Keep track of which namespaces have been modified"
:url "https://github.com/weavejester/ns-tracker"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.namespace "1.5.0"]
[org.clojure/java.classpath "1.1.0"]]
:aliases
{"test-all" ["with-profile" "default:+1.10:+1.11:+1.12" "test"]}
:profiles
{:dev {:dependencies [[commons-io "2.16.1"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.3"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.0-beta1"]]}})