clj-htmltopdf/project.clj
Gered 5c32c3fba1 add more input argument flexibility to embed-image
the main benefit here is now being able to accept byte arrays directly
2017-08-29 10:50:25 -04:00

22 lines
1.1 KiB
Clojure

(defproject clj-htmltopdf "0.1-alpha"
:description "Simple Clojure wrapper for Open HTML to PDF"
:url "https://github.com/gered/clj-htmltopdf"
:license {:name "GNU Lesser General Public License v3.0"
:url "https://www.gnu.org/licenses/lgpl.html"}
:dependencies [[com.openhtmltopdf/openhtmltopdf-core "0.0.1-RC11"]
[com.openhtmltopdf/openhtmltopdf-jsoup-dom-converter "0.0.1-RC11"]
[com.openhtmltopdf/openhtmltopdf-pdfbox "0.0.1-RC11"]
[com.openhtmltopdf/openhtmltopdf-rtl-support "0.0.1-RC11"]
[com.openhtmltopdf/openhtmltopdf-svg-support "0.0.1-RC11"]
[commons-io/commons-io "2.5"]
[hiccup "1.0.5"]]
:profiles {:provided
{:dependencies [[org.clojure/clojure "1.8.0"]]}
:dev
{:dependencies [[pjstadig/humane-test-output "0.8.1"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})