(defproject clj-commons/clj-yaml "0.7.0"
:description "YAML encoding and decoding for Clojure using SnakeYAML"
:url "https://github.com/clj-commons/clj-yaml"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
;; Emit warnings on all reflection calls.
:global-vars {*warn-on-reflection* true}
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.yaml/snakeyaml "1.24"]
[org.flatland/ordered "1.5.7"]])
|