clojurefx/project.clj

13 lines
684 B
Clojure
Raw Normal View History

2013-08-28 18:15:12 +00:00
(defproject clojurefx "0.1.0-SNAPSHOT"
:description "Helper functions and probably a wrapper to simplify usage of JavaFX in Clojure.
You'll need to have jfxrt.jar in your local maven repository. See [this coderwall protip](https://coderwall.com/p/4yjy1a) for how to make this happen.
**This is not yet on clojars, but it will be there soon. Until then, clone it and install locally.**"
2013-08-28 18:35:00 +00:00
:url "https://www.github.com/zilti/clojurefx"
2013-08-28 18:15:12 +00:00
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
2013-08-28 18:35:00 +00:00
[com.oracle/javafx-runtime "2.2.0"]]
:plugins [[lein-marginalia "0.7.1"]])