diff options
author | Eduardo Julian | 2021-10-09 04:17:44 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-10-09 04:17:44 -0400 |
commit | f29d0644f15e6548af6d015ef9bb60eb6f846329 (patch) | |
tree | 1985737bbfa9846d7defcb0af95a88e092866f69 /lux-jvm | |
parent | 30100903886160f8e187e8da4a7d4c9cafe6c50e (diff) |
Fixed packaging issue.
Diffstat (limited to '')
-rw-r--r-- | lux-jvm/commands.md | 4 | ||||
-rw-r--r-- | lux-jvm/project.clj | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/lux-jvm/commands.md b/lux-jvm/commands.md index 2dd7cb2f5..e9da3e732 100644 --- a/lux-jvm/commands.md +++ b/lux-jvm/commands.md @@ -40,14 +40,14 @@ cd ~/lux/stdlib/ \ ``` cd ~/lux/lux-jvm/ \ -&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-jvm -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar +&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-jvm -Dversion=0.6.1-SNAPSHOT -Dpackaging=jar cd ~/lux/lux-jvm/ && mvn deploy:deploy-file \ -Durl=https://<username>:<password>@oss.sonatype.org/content/repositories/snapshots/ \ -Dfile=target/program.jar \ -DgroupId=com.github.luxlang \ -DartifactId=lux-jvm \ --Dversion=0.6.0-SNAPSHOT \ +-Dversion=0.6.1-SNAPSHOT \ -Dpackaging=jar ``` diff --git a/lux-jvm/project.clj b/lux-jvm/project.clj index f6bc06844..e60892f36 100644 --- a/lux-jvm/project.clj +++ b/lux-jvm/project.clj @@ -1,4 +1,4 @@ -(def version "0.6.0") +(def version "0.6.2") (def repo "https://github.com/LuxLang/lux") (def sonatype "https://oss.sonatype.org") (def sonatype-releases (str sonatype "/service/local/staging/deploy/maven2/")) @@ -7,7 +7,7 @@ (defproject com.github.luxlang/lux-jvm #=(identity version) :description "A JVM compiler for Lux." :url ~repo - :license {:name "Lux License v0.1.1" + :license {:name "Lux License v0.1.2" :url ~(str repo "/blob/master/license.txt")} :plugins [[com.github.luxlang/lein-luxc ~version]] :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}] @@ -22,7 +22,11 @@ :dependencies [[com.github.luxlang/lux-bootstrapper ~version] ;; [com.github.luxlang/stdlib ~version] ;; JVM Bytecode (TODO: Remove ASAP) - [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"]] :manifest {"lux" ~version} :source-paths ["source"] |