clj-pebble/project.clj

13 lines
675 B
Clojure
Raw Permalink Normal View History

2014-11-15 12:49:01 -05:00
(defproject clj-pebble "0.2.0"
2014-10-02 18:45:40 -04:00
:description "Clojure wrapper for the Pebble Java templating engine."
:url "https://github.com/gered/clj-pebble"
:license {:name "BSD 3-Clause License"
:url "http://opensource.org/licenses/BSD-3-Clause"}
:dependencies [[org.clojure/clojure "1.6.0"]
2014-11-15 00:59:07 -05:00
[com.mitchellbosecke/pebble "1.1.0"]
2014-11-15 00:55:25 -05:00
[cheshire "5.3.1"]
[org.apache.commons/commons-lang3 "3.3.2"]]
2014-10-02 18:45:40 -04:00
:profiles {:dev {:dependencies [[pjstadig/humane-test-output "0.6.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})