aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Julian2018-12-15 12:40:46 -0400
committerEduardo Julian2018-12-15 12:40:46 -0400
commit5f7896ac2cfa8cc9b3ca79c922438412e440a922 (patch)
treedce516b65b6333f43077b384b8b64905e27bb148
parentf6e280bd4ab41d12083c0eef2c823ad3962d6a04 (diff)
Changed the licenses in the project.clj files.
-rw-r--r--lux-lein/project.clj4
-rw-r--r--luxc/project.clj12
-rw-r--r--luxdoc/project.clj4
-rw-r--r--new-luxc/project.clj4
-rw-r--r--stdlib/project.clj4
5 files changed, 14 insertions, 14 deletions
diff --git a/lux-lein/project.clj b/lux-lein/project.clj
index 68cb13f80..114960e23 100644
--- a/lux-lein/project.clj
+++ b/lux-lein/project.clj
@@ -1,8 +1,8 @@
(defproject com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"
:description "The Leiningen plugin for the Lux programming language."
:url "https://github.com/LuxLang/lein-luxc"
- :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"}
:dependencies [[org.clojure/clojure "1.6.0"]
[com.github.luxlang/luxc-jvm "0.6.0-SNAPSHOT"]
[com.github.luxlang/stdlib "0.6.0-SNAPSHOT"]]
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"]
)
diff --git a/luxdoc/project.clj b/luxdoc/project.clj
index f2e960afb..de51950bb 100644
--- a/luxdoc/project.clj
+++ b/luxdoc/project.clj
@@ -1,8 +1,8 @@
(defproject luxdoc "0.5.0"
:description "Documentation generator for the Lux programming language's ."
:url "https://github.com/LuxLang/luxdoc"
- :license {:name "Mozilla Public License (Version 2.0)"
- :url "https://www.mozilla.org/en-US/MPL/2.0/"}
+ :license {:name "Lux License v0.1"
+ :url "https://github.com/LuxLang/lux/blob/master/license.txt"}
:plugins [[com.github.luxlang/lein-luxc "0.5.0"]]
:dependencies []
:repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
diff --git a/new-luxc/project.clj b/new-luxc/project.clj
index 5cf1e9a4e..0a09f24aa 100644
--- a/new-luxc/project.clj
+++ b/new-luxc/project.clj
@@ -1,8 +1,8 @@
(defproject com.github.luxlang/new-luxc "0.6.0-SNAPSHOT"
:description "A re-written compiler for Lux."
: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"}
:plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]]
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]
diff --git a/stdlib/project.clj b/stdlib/project.clj
index 53ad8718c..feebb80a5 100644
--- a/stdlib/project.clj
+++ b/stdlib/project.clj
@@ -1,8 +1,8 @@
(defproject com.github.luxlang/stdlib "0.6.0-SNAPSHOT"
:description "Standard library for the Lux programming language."
:url "https://github.com/LuxLang/stdlib"
- :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"}
:plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]]
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]