aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2021-10-09 04:17:44 -0400
committerEduardo Julian2021-10-09 04:17:44 -0400
commitf29d0644f15e6548af6d015ef9bb60eb6f846329 (patch)
tree1985737bbfa9846d7defcb0af95a88e092866f69 /lux-bootstrapper/project.clj
parent30100903886160f8e187e8da4a7d4c9cafe6c50e (diff)
Fixed packaging issue.
Diffstat (limited to 'lux-bootstrapper/project.clj')
-rw-r--r--lux-bootstrapper/project.clj13
1 files changed, 8 insertions, 5 deletions
diff --git a/lux-bootstrapper/project.clj b/lux-bootstrapper/project.clj
index ba42e7c05..4fb1b90cd 100644
--- a/lux-bootstrapper/project.clj
+++ b/lux-bootstrapper/project.clj
@@ -1,8 +1,8 @@
-(defproject com.github.luxlang/lux-bootstrapper "0.6.0"
+(defproject com.github.luxlang/lux-bootstrapper "0.6.2"
: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"
- :license {:name "Lux License v0.1.1"
+ :license {:name "Lux License v0.1.2"
:url "https://github.com/LuxLang/lux/blob/master/license.txt"}
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]
@@ -14,15 +14,18 @@
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.match "0.2.1"]
;; Prefer when building Lua compiler.
- ;; [org.ow2.asm/asm-all "5.0.3"]
+ ;; [org.ow2.asm/asm "5.0.3"]
+ ;; [org.ow2.asm/asm-commons "5.0.3"]
+ ;; [org.ow2.asm/asm-analysis "5.0.3"]
+ ;; [org.ow2.asm/asm-tree "5.0.3"]
+ ;; [org.ow2.asm/asm-util "5.0.3"]
;; Prefer when building JS compiler.
[org.ow2.asm/asm "7.3.1"]
[org.ow2.asm/asm-commons "7.3.1"]
[org.ow2.asm/asm-analysis "7.3.1"]
[org.ow2.asm/asm-tree "7.3.1"]
- [org.ow2.asm/asm-util "7.3.1"]
- ]
+ [org.ow2.asm/asm-util "7.3.1"]]
:warn-on-reflection true
:repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]]
:source-paths ["src"]