aboutsummaryrefslogtreecommitdiff
path: root/lux-js/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2019-03-06 21:03:21 -0400
committerEduardo Julian2019-03-06 21:03:21 -0400
commitc1160c68a9a9d3f1243a69d585a06bf1808ef32e (patch)
treef2942d7b01ef0835cb368aef503e91efb92fc551 /lux-js/project.clj
parentfe62a4586c2192d285bba42484cb0b2537fbb664 (diff)
Extracted the JavaScript compiler into its own separate project.
Diffstat (limited to '')
-rw-r--r--lux-js/project.clj28
1 files changed, 28 insertions, 0 deletions
diff --git a/lux-js/project.clj b/lux-js/project.clj
new file mode 100644
index 000000000..08fedd516
--- /dev/null
+++ b/lux-js/project.clj
@@ -0,0 +1,28 @@
+(def version "0.6.0-SNAPSHOT")
+(def repo "https://github.com/LuxLang/lux")
+(def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/")
+(def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/")
+
+(defproject com.github.luxlang/lux-js #=(identity version)
+ :description "A JavaScript compiler for Lux."
+ :url ~repo
+ :license {:name "Lux License v0.1"
+ :url ~(str repo "/blob/master/license.txt")}
+ :scm {:name "git"
+ :url ~(str repo ".git")}
+ :pom-addition [:developers [:developer
+ [:name "Eduardo Julian"]
+ [:url "https://github.com/eduardoejp"]]]
+
+ :repositories [["releases" ~sonatype-releases]
+ ["snapshots" ~sonatype-snapshots]]
+ :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
+ ["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
+
+ :plugins [[com.github.luxlang/lein-luxc ~version]]
+ :dependencies [[com.github.luxlang/luxc-jvm ~version]
+ [com.github.luxlang/stdlib ~version]]
+
+ :source-paths ["source"]
+ :lux {:program {:jvm "program"}}
+ )