aboutsummaryrefslogtreecommitdiff
path: root/project.clj
diff options
context:
space:
mode:
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"]}}
+ )