diff options
author | Eduardo Julian | 2022-08-17 02:54:41 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-08-17 02:54:41 -0400 |
commit | 261172e7a4cff7b9978eec4c0d32e963cbe7486e (patch) | |
tree | bf3c79319eef3bda7e1efe6612e3d6ea546e1e85 /lux-jvm | |
parent | 0f9bc13a34b729d9ae9db31276feb2a66785d06b (diff) |
Proper testing for debug.log!
Diffstat (limited to 'lux-jvm')
-rw-r--r-- | lux-jvm/commands.md | 4 | ||||
-rw-r--r-- | lux-jvm/project.clj | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lux-jvm/commands.md b/lux-jvm/commands.md index 071b66f88..83ef82582 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.7.0 -Dpackaging=jar +&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-jvm -Dversion=0.8.0-SNAPSHOT -Dpackaging=jar cd ~/lux/lux-jvm/ && mvn deploy:deploy-file \ -Durl=https://$NEXUS_USERNAME:$NEXUS_PASSWORD@oss.sonatype.org/content/repositories/snapshots/ \ -Dfile=target/program.jar \ -DgroupId=com.github.luxlang \ -DartifactId=lux-jvm \ --Dversion=0.7.0-SNAPSHOT \ +-Dversion=0.8.0-SNAPSHOT \ -Dpackaging=jar ``` diff --git a/lux-jvm/project.clj b/lux-jvm/project.clj index a77d134ac..b07c38035 100644 --- a/lux-jvm/project.clj +++ b/lux-jvm/project.clj @@ -1,4 +1,4 @@ -(def version "0.7.0") +(def version "0.8.0-SNAPSHOT") (def repo "https://github.com/LuxLang/lux") (def sonatype "https://oss.sonatype.org") (def sonatype-releases (str sonatype "/service/local/staging/deploy/maven2/")) |