-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.clj
22 lines (18 loc) · 1.04 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
(defproject org.soulspace.clj/overarch "0.36.0-SNAPSHOT"
:description "Overarch provides a data model for the holistic description of a software system, opening multiple use cases on the model data."
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.4"]
[org.clojure/tools.cli "1.1.230"]
[com.cnuernber/charred "1.034"]
[com.nextjournal/beholder "1.0.2"]
[expound/expound "0.9.0"]
[org.babashka/sci "0.8.43"]
[org.slf4j/slf4j-nop "2.0.16"]
[org.soulspace.clj/clj.java "0.9.1"]
[org.soulspace.clj/cmp.markdown "0.4.1"]]
:repl-options {:init-ns org.soulspace.overarch.adapter.ui.cli}
:uberjar-name "overarch.jar"
:main org.soulspace.overarch.adapter.ui.cli
:scm {:name "git" :url "https://github.com/soulspace-org/overarch"}
:deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org/repo"}]])