aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2017-04-14 17:36:40 -0400
committerEduardo Julian2017-04-14 17:36:40 -0400
commit72482573b97662b6b5910213b5f1bf21c685961c (patch)
tree045a3310d94dc9cc2fb67ef5adc770df33494f98 /new-luxc/project.clj
parent079fdb6c828bd7589ba0785ad1bb82c14b375f32 (diff)
- Development of the new re-written compiler has officially begun!
Diffstat (limited to '')
-rw-r--r--new-luxc/project.clj25
1 files changed, 25 insertions, 0 deletions
diff --git a/new-luxc/project.clj b/new-luxc/project.clj
new file mode 100644
index 000000000..4ecd372f5
--- /dev/null
+++ b/new-luxc/project.clj
@@ -0,0 +1,25 @@
+(defproject com.github.luxlang/new-luxc "0.6.0-SNAPSHOT"
+ :description "A re-written compiler for Lux."
+ :url "https://github.com/LuxLang/lux"
+ :license {:name "MIT License"
+ :url "https://opensource.org/licenses/MIT"}
+ :plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]]
+ :deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ :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"]]]
+ :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
+ ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]]
+ :scm {:name "git"
+ :url "https://github.com/LuxLang/lux.git"}
+
+ :dependencies []
+
+ :source-paths ["source"]
+ :test-paths ["test"]
+ :lux {:program {:jvm "program"}
+ :tests {:jvm "tests"}}
+ )