XPS to PDF
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 satır
1.0KB

  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. [org.clojure/core.async "0.4.500"
  13. :exclusions [org.clojure/tools.reader]]]
  14. :plugins [[lein-codox "0.10.7"]]
  15. :codox {:output-path "docs"
  16. :source-uri "https://github.com/tservice-plugins/xps2pdf/blob/v{version}/{filepath}#L{line}"}
  17. :profiles
  18. {:provided
  19. {:dependencies
  20. [[org.clojure/clojure "1.10.1"]
  21. [org.clojars.yjcyxky/tservice "0.5.8"]]}
  22. :uberjar
  23. {:auto-clean true
  24. :aot :all
  25. :omit-source true
  26. :javac-options ["-target" "1.8", "-source" "1.8"]
  27. :target-path "target/%s"
  28. :resource-paths ["resources"]
  29. :uberjar-name "xps2pdf.tservice-plugin.jar"}})