diff options
author | Eduardo Julian | 2021-02-24 16:39:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-02-24 16:39:42 -0400 |
commit | ae7fc0207c8d3281882261642f6a8e0579985aa0 (patch) | |
tree | cd7e6202e4e9fb5c9d8db557a5cd805978669c76 /lux-bootstrapper | |
parent | 565e7fae85379e4d2e4daacc51eb1f8796c738c1 (diff) |
Done with Python.
Diffstat (limited to 'lux-bootstrapper')
-rw-r--r-- | lux-bootstrapper/project.clj | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lux-bootstrapper/project.clj b/lux-bootstrapper/project.clj index ac69dcd8b..b424ea8bc 100644 --- a/lux-bootstrapper/project.clj +++ b/lux-bootstrapper/project.clj @@ -2,7 +2,7 @@ :min-lein-version "2.1.0" ;; 2.1.0 introduced jar classifiers :description "The JVM compiler for the Lux programming language." :url "https://github.com/LuxLang/lux" - :license {:name "Lux License v0.1" + :license {:name "Lux License v0.1.1" :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}] @@ -13,13 +13,14 @@ [:url "https://github.com/eduardoejp"]]] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.match "0.2.1"] - ;; [org.ow2.asm/asm-all "5.0.3"] + [org.ow2.asm/asm-all "5.0.3"] - [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 "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"] + ] :warn-on-reflection true :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"] ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]] |