forked from clj-commons/seesaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (26 loc) · 1.19 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(defproject seesaw "1.3.1-SNAPSHOT"
:description "A Swing wrapper/DSL for Clojure. You want seesaw.core, FYI. See http://seesaw-clj.org for more info."
:url "http://seesaw-clj.org"
:mailing-list {:name "seesaw-clj"
:archive "https://groups.google.com/group/seesaw-clj"
:post "[email protected]"}
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:warn-on-reflection true
:dependencies [[org.clojure/clojure "1.2.0"]
[com.miglayout/miglayout "3.7.4"]
[com.jgoodies/forms "1.2.1"]
[org.swinglabs/swingx "1.6.1"]
[j18n "1.0.0"]]
:dev-dependencies [[com.stuartsierra/lazytest "1.1.2"]
[lein-clojars "0.6.0"]
[org.clojars.rayne/autodoc "0.8.0-SNAPSHOT"]]
:repositories {"stuartsierra-releases" "http://stuartsierra.com/maven2"}
:autodoc {
:name "Seesaw",
:page-title "Seesaw API Documentation"
:copyright "Copyright 2011, Dave Ray"
:load-except-list [#"seesaw/examples"]}
:java-source-path "jvm")