forked from clj-commons/seesaw
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
35 lines (29 loc) · 1.28 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
(defproject new-seesaw "0.1.1"
:description "A Swing wrapper/DSL for Clojure with virtual dom. You want seesaw.core, FYI. See http://seesaw-clj.org for more info."
:url "http://seesaw-clj.org"
: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.10.1"]
[com.miglayout/miglayout "3.7.4"]
[com.jgoodies/forms "1.3.0"]
[org.swinglabs.swingx/swingx-core "1.6.5-1"]
[j18n "1.0.2"]
[com.fifesoft/rsyntaxtextarea "3.0.3"]]
:plugins [[lein-ancient "0.6.15"]
[lein-cljfmt "0.6.4"]]
: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"])