diff options
author | Eduardo Julian | 2017-03-24 17:06:00 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-03-24 17:06:00 -0400 |
commit | b6af2b10fe9a4b0cd72ac10431858ff8a109adfb (patch) | |
tree | 67ab4965c5c48e428ae807d9e3e9211074be4813 /stdlib | |
parent | 67835905186803efa763b2c107ecadc835ebe0a6 (diff) |
- Updated the license in the project.clj files.
- Now forcing the JVM to use a larger stack, to avoid StackOverflow errors.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/project.clj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/project.clj b/stdlib/project.clj index 99870fafb..ec02df7bd 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 "Mozilla Public License (Version 2.0)" - :url "https://www.mozilla.org/en-US/MPL/2.0/"} + :license {:name "MIT License" + :url "https://opensource.org/licenses/MIT"} ;; :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}] @@ -20,5 +20,5 @@ :source-paths ["source"] :test-paths ["test"] - :lux {:tests "tests"} + :lux {:tests {:jvm "tests"}} ) |