-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
(defproject lwb-gui "1.0.0-BETA" | ||
:date "2020-01-15" | ||
(defproject lwb-gui "1.0.0" | ||
:date "2020-11-15" | ||
:description "A simple GUI for the Logic Workbench" | ||
:url "https://guthub.com/esb-lwb/lwb-gui" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:dependencies [[org.clojure/clojure "1.10.0"] | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
; for seesaw | ||
[com.miglayout/miglayout "3.7.4"] | ||
[com.jgoodies/forms "1.2.1"] | ||
[com.jgoodies/forms "1.3.0"] | ||
[org.swinglabs.swingx/swingx-core "1.6.3"] | ||
[j18n "1.0.2"] | ||
[rsyntaxtextarea/rsyntaxtextarea "3.0.9-esb-dev"] | ||
[seesaw "1.5.1-esb-dev"] | ||
[lwb "2.1.5"]] ;; update consts/about too! | ||
[lwb/lwb "2.2.0"]] ;; update consts/about too! | ||
:main esb.dev.lwb-gui.main | ||
:profiles {:uberjar {:aot :all}} | ||
:uberjar-name "lwb-gui.jar") | ||
|
||
; lwb is not available as a maven jar | ||
; compile github/esb-lwb/lwb and put the lwb.jar into your local maven repo | ||
; lein localrepo install lwb.jar lwb n.n.n |