-
Notifications
You must be signed in to change notification settings - Fork 149
/
project.clj
37 lines (30 loc) · 1.31 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.5.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 examples
;
:aliases { "examples" ["run" "-m" "seesaw.test.examples.launcher"] }
:dependencies [[org.clojure/clojure "1.4.0"]
[com.miglayout/miglayout "3.7.4"]
[com.jgoodies/forms "1.2.1"]
[org.swinglabs.swingx/swingx-core "1.6.3"]
[j18n "1.0.2"]
[com.fifesoft/rsyntaxtextarea "2.5.6"]]
:profiles { :dev {:dependencies [[com.stuartsierra/lazytest "1.1.2"]
[lein-autodoc "0.9.0"]]}}
:repositories [["stuartsierra-releases" "https://stuartsierra.com/maven2"]]
:autodoc {
:name "Seesaw",
:page-title "Seesaw API Documentation"
:copyright "Copyright 2012, Dave Ray" }
:java-source-paths ["jvm"])