From 72482573b97662b6b5910213b5f1bf21c685961c Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 14 Apr 2017 17:36:40 -0400 Subject: - Development of the new re-written compiler has officially begun! --- new-luxc/project.clj | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 new-luxc/project.clj (limited to 'new-luxc/project.clj') 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"}} + ) -- cgit v1.2.3