-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
15 lines (15 loc) · 924 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject com.madeye.clojure.common/common "0.2.7-SNAPSHOT"
:description "Common utility code to be shared between clojure projects"
:url "https://github.com/madeye-matt/clojure-common"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.6.0"]
[clj-time "0.8.0"]
]
:main com.madeye.clojure.common.collection
:repositories [["releases" { :url "https://artifactory.madeye.com:447/artifactory/libs-release" :creds :gpg}]
["snapshots" { :url "https://artifactory.madeye.com:447/artifactory/libs-snapshot" :creds :gpg}]]
:deploy-repositories [["releases" { :url "https://artifactory.madeye.com:447/artifactory/libs-release-local" :creds :gpg}]
["snapshots" { :url "https://artifactory.madeye.com:447/artifactory/libs-snapshot-local" :creds :gpg}]]
)