diff options
author | Eduardo Julian | 2019-03-31 00:31:05 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-31 00:31:05 -0400 |
commit | b4c19578ca9d91c34c5aaba567fadb028a1ec877 (patch) | |
tree | c39d23a428ceaaa556a97dfd028d36687f738c85 | |
parent | 118895081d97279a796cc704e6c23bf92ed79e5e (diff) |
Added Lux version to manifests.
-rw-r--r-- | lux-js/project.clj | 3 | ||||
-rw-r--r-- | lux-python/project.clj | 3 | ||||
-rw-r--r-- | new-luxc/project.clj | 1 | ||||
-rw-r--r-- | stdlib/project.clj | 1 |
4 files changed, 6 insertions, 2 deletions
diff --git a/lux-js/project.clj b/lux-js/project.clj index d9b07cf43..29b1800f8 100644 --- a/lux-js/project.clj +++ b/lux-js/project.clj @@ -22,7 +22,8 @@ :plugins [[com.github.luxlang/lein-luxc ~version]] :dependencies [[com.github.luxlang/luxc-jvm ~version] [com.github.luxlang/stdlib ~version]] - + + :manifest {"lux" ~version} :source-paths ["source"] :lux {:program "program"} ) diff --git a/lux-python/project.clj b/lux-python/project.clj index cb7be3c12..9722945b5 100644 --- a/lux-python/project.clj +++ b/lux-python/project.clj @@ -23,7 +23,8 @@ :dependencies [[com.github.luxlang/luxc-jvm ~version] [com.github.luxlang/stdlib ~version] [org.python/jython-standalone "2.7.1"]] - + + :manifest {"lux" ~version} :source-paths ["source"] :lux {:program "program"} ) diff --git a/new-luxc/project.clj b/new-luxc/project.clj index b78f662fa..2229decd1 100644 --- a/new-luxc/project.clj +++ b/new-luxc/project.clj @@ -38,6 +38,7 @@ ;; [org.develnext.jphp/jphp-scripting "0.9.2"] ] + :manifest {"lux" ~version} :source-paths ["source"] :test-paths ["test"] :lux {:program "program" diff --git a/stdlib/project.clj b/stdlib/project.clj index 531076743..accb59253 100644 --- a/stdlib/project.clj +++ b/stdlib/project.clj @@ -18,6 +18,7 @@ :scm {:name "git" :url ~(str repo ".git")} + :manifest {"lux" ~version} :source-paths ["source"] :profiles {:bibliotheca {:description "Standard library for the Lux programming language." :dependencies [] |