aboutsummaryrefslogtreecommitdiff
path: root/luxc/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2018-12-15 12:40:46 -0400
committerEduardo Julian2018-12-15 12:40:46 -0400
commit5f7896ac2cfa8cc9b3ca79c922438412e440a922 (patch)
treedce516b65b6333f43077b384b8b64905e27bb148 /luxc/project.clj
parentf6e280bd4ab41d12083c0eef2c823ad3962d6a04 (diff)
Changed the licenses in the project.clj files.
Diffstat (limited to '')
-rw-r--r--luxc/project.clj12
1 files changed, 6 insertions, 6 deletions
diff --git a/luxc/project.clj b/luxc/project.clj
index f6c625543..d6fec5f0d 100644
--- a/luxc/project.clj
+++ b/luxc/project.clj
@@ -2,8 +2,8 @@
:min-lein-version "2.1.0" ;; 2.1.0 introduced jar classifiers
:description "The JVM compiler for the Lux programming language."
:url "https://github.com/LuxLang/lux"
- :license {:name "MIT License"
- :url "https://opensource.org/licenses/MIT"}
+ :license {:name "Lux License v0.1"
+ :url "https://github.com/LuxLang/lux/blob/master/license.txt"}
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
@@ -23,12 +23,12 @@
:scm {:name "git"
:url "https://github.com/LuxLang/lux.git"}
- :classifiers {:sources {:resource-paths ["src"]}
- :javadoc {:resource-paths ["src"]}}
+ ;; :classifiers {:sources {:resource-paths ["src"]}
+ ;; :javadoc {:resource-paths ["src"]}}
- :aot [lux]
+ ;; :aot [lux]
:jvm-opts ^:replace ["-server" "-Xms2048m" "-Xmx2048m"
- "-Xss4m"
+ "-Xss16m"
"-XX:+OptimizeStringConcat"]
)