forked from uxp/lein-scss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
16 lines (16 loc) · 878 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject lein-scss "0.3.1-SNAPSHOT"
:description "A lein plugin to compile scss to css."
:url "https://github.com/bluegray/lein-scss"
:scm {:name "git"
:url "https://github.com/bluegray/lein-scss"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:signing {:gpg-key "D7914BDD"}
:deploy-repositories [["releases" :clojars {:creds :gpg}
{:url "https://clojars.org/repo"
:username [:env/clojars_username :gpg]
:password [:env/clojars_password :gpg]}]]
:eval-in-leiningen true
:dependencies [[org.clojure/clojure "1.7.0"]
[juxt/dirwatch "0.2.3"]
[clj-time "0.12.0"]])