aboutsummaryrefslogtreecommitdiff
path: root/stdlib/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2021-10-01 02:59:09 -0400
committerEduardo Julian2021-10-01 02:59:09 -0400
commit628356261aa9539b4f438ffd369a2638dc9506bd (patch)
tree917b4118194d14b4d5fe5efc93091977d4caebdf /stdlib/project.clj
parent8196ab379495ab00c11b74b55b6f2fabd99ab351 (diff)
Commercial licensing option for Lux + release versions for sub-projects.
Diffstat (limited to 'stdlib/project.clj')
-rw-r--r--stdlib/project.clj10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/project.clj b/stdlib/project.clj
index b7c037b45..64cb8d3b7 100644
--- a/stdlib/project.clj
+++ b/stdlib/project.clj
@@ -1,9 +1,11 @@
-(def version "0.6.0-SNAPSHOT")
+(def version "0.6.0")
(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.1"
:url ~(str repo "/blob/master/license.txt")}
@@ -13,16 +15,14 @@
:pom-addition [:developers [:developer
[:name "Eduardo Julian"]
[:url "https://github.com/eduardoejp"]]]
- :repositories [["releases" ~sonatype-releases]
- ["snapshots" ~sonatype-snapshots]]
+ :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 {:description "Standard library for the Lux programming language."
- :lux {:test "test/lux"}}
+ :profiles {:bibliotheca {:lux {:test "test/lux"}}
:aedifex {:description "A build system/tool made exclusively for Lux."
:lux {:program "program/aedifex"
:test "test/aedifex"}}}