This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-hl7-fhir/project.clj

19 lines
750 B
Clojure
Raw Normal View History

2014-10-07 13:31:18 -04:00
(defproject clj-hl7-fhir "0.3.0"
:description "HL7 FHIR JSON client"
:url "https://github.com/gered/clj-hl7-fhir"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[cheshire "5.7.0"]
[clj-http "2.3.0"]
2014-07-04 09:04:45 -04:00
[com.cemerick/url "0.1.1"]
[camel-snake-kebab "0.4.0"]]
:profiles {:provided
{:dependencies [[org.clojure/clojure "1.8.0"]]}
:test
{:dependencies [[pjstadig/humane-test-output "0.8.1"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})