aboutsummaryrefslogtreecommitdiff
path: root/stdlib/project.clj
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/project.clj')
-rw-r--r--stdlib/project.clj29
1 files changed, 0 insertions, 29 deletions
diff --git a/stdlib/project.clj b/stdlib/project.clj
deleted file mode 100644
index dfffbef5a..000000000
--- a/stdlib/project.clj
+++ /dev/null
@@ -1,29 +0,0 @@
-(def version "0.6.6-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/stdlib #=(identity version)
- :description "Standard library for the Lux programming language."
-
- :url ~repo
- :license {:name "Lux License v0.1.2"
- :url ~(str repo "/blob/master/license.txt")}
- :plugins [[com.github.luxlang/lein-luxc ~version]]
- :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
- ["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
- :pom-addition [:developers [:developer
- [:name "Eduardo Julian"]
- [:url "https://github.com/eduardoejp"]]]
- :repositories [["snapshots" ~sonatype-snapshots]]
- :scm {:name "git"
- :url ~(str repo ".git")}
-
- :manifest {"lux" ~version}
- :source-paths ["source"]
- :dependencies [[com.github.luxlang/lux-bootstrapper ~version]]
- :profiles {:bibliotheca {:lux {:test "test/lux"}}
- :aedifex {:description "A build system/tool made exclusively for Lux."
- :lux {:program ["program/aedifex" "_"]
- :test ["test/aedifex" "_"]}}}
- )