clojurefx/project.clj

27 lines
1.1 KiB
Clojure
Raw Normal View History

2017-12-12 01:05:27 +00:00
(defproject clojurefx/clojurefx "0.5.0-SNAPSHOT"
2017-01-14 20:52:11 +00:00
:description "A Clojure wrapper for JavaFX."
:license "Like Clojure."
:url "https://www.bitbucket.org/zilti/clojurefx"
2017-08-02 12:18:36 +00:00
:signing {:gpg-key "68484437"}
2017-12-12 01:05:27 +00:00
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/core.async "0.4.474" :scope "test"]
2018-10-30 10:11:36 +00:00
[org.clojars.tristefigure/shuriken "0.14.28" :scope "test"]
[org.openjfx/javafx-fxml "11-ea+25" :scope "test"]
[org.openjfx/javafx-swing "11-ea+25" :scope "test"]
2017-01-14 18:27:41 +00:00
[swiss-arrows "1.0.0"]
2017-08-01 16:04:33 +00:00
[camel-snake-kebab "0.4.0"]
2017-12-12 03:09:16 +00:00
[com.taoensso/timbre "4.10.0" :exclusions [com.taoensso/carmine]]
2018-10-24 15:55:13 +00:00
[net.openhft/compiler "2.3.1"]
[org.ow2.asm/asm "6.2.1"]
[org.ow2.asm/asm-util "6.2.1"]
2017-12-12 03:09:16 +00:00
[clojure-jsr-223 "0.1.0"]
]
2017-08-02 12:18:36 +00:00
:profiles {:test {:source-paths ["test"]
2018-10-30 10:11:36 +00:00
:resource-paths ["test-resources"]
:aot :all}
2017-08-30 11:58:57 +00:00
:uberjar {:aot :all}}
2017-09-20 14:26:15 +00:00
:aot :all
2017-12-12 03:09:16 +00:00
:omit-source true
:source-paths ["src"]
:java-source-paths ["src"])