Gered
9c95678e9a
lets get rid of that "alpha" suffix which wasn't really intended to be there for so long in the first place ...
25 lines
1.1 KiB
Clojure
25 lines
1.1 KiB
Clojure
(defproject clj-htmltopdf "0.1"
|
|
: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 "1.0.5"]
|
|
[com.openhtmltopdf/openhtmltopdf-pdfbox "1.0.5"]
|
|
[com.openhtmltopdf/openhtmltopdf-rtl-support "1.0.5"]
|
|
[com.openhtmltopdf/openhtmltopdf-svg-support "1.0.5"]
|
|
[org.jsoup/jsoup "1.12.1"]
|
|
[commons-io/commons-io "2.6"]
|
|
[hiccup "1.0.5"]]
|
|
|
|
:resource-paths ["resources"]
|
|
|
|
:profiles {:provided
|
|
{:dependencies [[org.clojure/clojure "1.9.0"]]}
|
|
|
|
:dev
|
|
{:dependencies [[pjstadig/humane-test-output "0.9.0"]]
|
|
:resource-paths ["test-resources"]
|
|
:injections [(require 'pjstadig.humane-test-output)
|
|
(pjstadig.humane-test-output/activate!)]}})
|