forked from clj-commons/seesaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
37 lines (30 loc) · 1.26 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
28
29
30
31
32
33
34
35
36
(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
; To run the examples:
;
; $ lein run :examples
;
:run-aliases { :examples seesaw.test.examples.launcher }
:dependencies [[org.clojure/clojure "1.2.0"]
[com.miglayout/miglayout "3.7.4"]
[com.jgoodies/forms "1.2.1"]
[org.swinglabs.swingx/swingx-core "1.6.3"]
[j18n "1.0.0"]]
:dev-dependencies [[com.stuartsierra/lazytest "1.1.2"]
[lein-clojars "0.7.0"]
[lein-autodoc "0.9.0"]]
:repositories {"stuartsierra-releases" "http://stuartsierra.com/maven2"}
:autodoc {
:name "Seesaw",
:page-title "Seesaw API Documentation"
:copyright "Copyright 2012, Dave Ray" }
:java-source-path "jvm")