aboutsummaryrefslogtreecommitdiff
path: root/stdlib/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2019-02-06 09:34:55 -0400
committerEduardo Julian2019-02-06 09:34:55 -0400
commitee70d1af74a295b41f01770c269d72ee2d990c27 (patch)
tree6dc663344cad99081c2ed491e4fc35e4da9a1ac6 /stdlib/project.clj
parent2d76b3e3c30e8c3e6073cd21d75d2461e58a0a4d (diff)
Updated test for "lux/control/pipe" to new format.
Diffstat (limited to '')
-rw-r--r--stdlib/project.clj10
1 files changed, 6 insertions, 4 deletions
diff --git a/stdlib/project.clj b/stdlib/project.clj
index 678d5d381..c4fa14f41 100644
--- a/stdlib/project.clj
+++ b/stdlib/project.clj
@@ -4,7 +4,6 @@
(def sonetype-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"
:url ~(str repo "/blob/master/license.txt")}
@@ -20,11 +19,14 @@
:url ~(str repo ".git")}
:source-paths ["source"]
- :profiles {:library {:dependencies []
+ :profiles {:library {:description "Standard library for the Lux programming language."
+ :dependencies []
:lux {:tests {:jvm "test/lux"}}}
- :scriptum {:dependencies []
+ :scriptum {:description "A documentation generator for Lux code."
+ :dependencies []
:lux {:program {:jvm "program/scriptum"}}}
- :licentia {:dependencies []
+ :licentia {:description "A program for producing free/open-source/reciprocal licenses."
+ :dependencies []
:lux {:program {:jvm "program/licentia"}
:tests {:jvm "test/licentia"}}}}
)