aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2021-11-08 02:02:27 -0400
committerEduardo Julian2021-11-08 02:02:27 -0400
commitdf6cf0d3c980e3d7240eec6cb38d86af61037725 (patch)
tree6654307936eeeb0947bb7e8db8e9e94430c8c2dd /lux-bootstrapper/project.clj
parent305a3b5bca562601ee37b4cac69dd02f245830db (diff)
Sharing the same Function class between bootsrapper and JVM compiler.
Diffstat (limited to 'lux-bootstrapper/project.clj')
-rw-r--r--lux-bootstrapper/project.clj6
1 files changed, 5 insertions, 1 deletions
diff --git a/lux-bootstrapper/project.clj b/lux-bootstrapper/project.clj
index 739d5c37c..2925b57d7 100644
--- a/lux-bootstrapper/project.clj
+++ b/lux-bootstrapper/project.clj
@@ -1,4 +1,6 @@
-(defproject com.github.luxlang/lux-bootstrapper "0.6.4"
+(def version "0.6.5-SNAPSHOT")
+
+(defproject com.github.luxlang/lux-bootstrapper #=(identity version)
:min-lein-version "2.1.0" ;; 2.1.0 introduced jar classifiers
:description "The JVM (bootstrapping) compiler for the Lux programming language."
:url "https://github.com/LuxLang/lux"
@@ -13,6 +15,8 @@
[:url "https://github.com/eduardoejp"]]]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.match "0.2.1"]
+
+ [com.github.luxlang/lux-jvm-function ~version]
;; Prefer when building JS compiler.
[org.ow2.asm/asm "7.3.1"]