XPS to PDF
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

33 lines
983B

  1. (defproject tservice/xps2pdf "v0.2.0"
  2. :description "Convert xps to pdf."
  3. :url "https://github.com/tservice-plugins/xps2pdf"
  4. :license {:name "Eclipse Public License"
  5. :url "http://www.eclipse.org/legal/epl-v10.html"}
  6. :min-lein-version "2.5.0"
  7. :deployable true
  8. :dependencies
  9. [[org.clojure/data.csv "1.0.0"]
  10. [me.raynes/fs "1.4.6"]
  11. [org.clojure/tools.logging "1.1.0"]
  12. [pdfboxing/pdfboxing "0.1.14"]]
  13. :plugins [[lein-codox "0.10.7"]]
  14. :codox {:output-path "docs"
  15. :source-uri "https://github.com/tservice-plugins/xps2pdf/blob/v{version}/{filepath}#L{line}"}
  16. :profiles
  17. {:provided
  18. {:dependencies
  19. [[org.clojure/clojure "1.10.1"]
  20. [org.clojars.yjcyxky/tservice "0.6.0"]]}
  21. :uberjar
  22. {:auto-clean true
  23. :aot :all
  24. :omit-source true
  25. :javac-options ["-target" "1.8", "-source" "1.8"]
  26. :target-path "target/%s"
  27. :resource-paths ["resources"]
  28. :uberjar-name "xps2pdf.tservice-plugin.jar"}})