aboutsummaryrefslogtreecommitdiff
path: root/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2016-04-26 00:07:30 -0400
committerEduardo Julian2016-04-26 00:07:30 -0400
commita498da4f24bb7c9e248c6b00c3bc4283a49e623f (patch)
tree89178f96fb37905684a89b2ac181a9a05601855a /project.clj
parent067c48feb464475cfa428b0c048f6d618a2b30e6 (diff)
- Made some fixes to type-inference for pattern-matching.
Diffstat (limited to '')
-rw-r--r--project.clj6
1 files changed, 4 insertions, 2 deletions
diff --git a/project.clj b/project.clj
index c00605591..c08d03930 100644
--- a/project.clj
+++ b/project.clj
@@ -1,4 +1,4 @@
-(defproject com.github.luxlang/luxc-jvm "0.3.3-SNAPSHOT"
+(defproject com.github.luxlang/luxc-jvm "0.3.3"
:description "The JVM compiler for the Lux programming language."
:url "https://github.com/LuxLang/lux"
:license {:name "Mozilla Public License (Version 2.0)"
@@ -7,4 +7,6 @@
[org.clojure/core.match "0.2.1"]
[org.ow2.asm/asm-all "5.0.3"]]
:warn-on-reflection true
- :main lux)
+ :main lux
+ :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
+ ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]])