-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
19 lines (19 loc) · 1.16 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject org.clojars.pkoerner/lisb "0.0.6-SNAPSHOT"
:description "lisb: A Clojure library that wraps ProB's constraint solver. Use it to write/transform B machines with less pain or interact with the constraint solver."
:url "https://github.com/pkoerner/lisb" ;; subject to change
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["snapshot" "https://oss.sonatype.org/content/repositories/snapshots"]
["release" "https://oss.sonatype.org/content/repositories/releases"]]
:deploy-repositories [["releases" {:sign-releases false :url "https://repo.clojars.org/"}]
["snapshots" {:sign-releases false :url "https://repo.clojars.org/"}]]
:jvm-opts ["-Xss1g"]
:dependencies [[org.clojure/clojure "1.11.3"]
[org.clojure/math.combinatorics "0.3.0"]
[org.clojure/test.check "1.1.1"]
[potemkin "0.4.7"]
[com.rpl/specter "1.1.4"]
[clj-wallhack "1.0.1"]
[de.hhu.stups/prob-java "4.13.2-SNAPSHOT"]
[de.hhu.stups/value-translator "0.1.4"]
])