aboutsummaryrefslogtreecommitdiff
path: root/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2016-10-03 20:51:11 -0400
committerEduardo Julian2016-10-03 20:51:11 -0400
commite3402159ae22a13a0e9bea8d125fa0f6507e5535 (patch)
treec5a32c8dbc0ece1a6ec06dafc50491d6209b9262 /project.clj
parent8b39c3d8f9b9817c5455f8fe76ce5e9ef568c885 (diff)
- Renamed "loop" to "iter".
- Updated compiler version. - Improved project.clj file.
Diffstat (limited to '')
-rw-r--r--project.clj13
1 files changed, 11 insertions, 2 deletions
diff --git a/project.clj b/project.clj
index ded705bb0..726b3b120 100644
--- a/project.clj
+++ b/project.clj
@@ -1,4 +1,5 @@
-(defproject com.github.luxlang/luxc-jvm "0.4.0"
+(defproject com.github.luxlang/luxc-jvm "0.5.0-SNAPSHOT"
+ :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 "Mozilla Public License (Version 2.0)"
@@ -7,10 +8,18 @@
:creds :gpg}]
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
:creds :gpg}]]
+ :pom-addition [:developers [:developer
+ [:name "Eduardo Julian"]
+ [: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"]]
:warn-on-reflection true
:main lux
:repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
- ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]])
+ ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]]
+ :source-paths ["src"]
+
+ :classifiers {:sources {:resource-paths ["src"]}
+ :javadoc {:resource-paths ["src"]}}
+ )