diff options
author | Eduardo Julian | 2021-09-19 03:07:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-19 03:07:56 -0400 |
commit | 0bc2c541ab27e44b760618d15a248a794ab2f98e (patch) | |
tree | b040ba5c8558d4b112acc1edc97839e3db4e40dd /lux-lein | |
parent | ad729814254ec3fef8c75b59472bc8108ec7c4c7 (diff) |
Added STDLIB documentation for the different target platforms.
Diffstat (limited to 'lux-lein')
-rw-r--r-- | lux-lein/src/leiningen/lux/packager.clj | 5 | ||||
-rw-r--r-- | lux-lein/src/leiningen/lux/utils.clj | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lux-lein/src/leiningen/lux/packager.clj b/lux-lein/src/leiningen/lux/packager.clj index 022d52cb5..6b2b7d9ff 100644 --- a/lux-lein/src/leiningen/lux/packager.clj +++ b/lux-lein/src/leiningen/lux/packager.clj @@ -131,11 +131,10 @@ )))) (def default-manifest-file (str "." java.io.File/separator "AndroidManifest.xml")) -(def jar-exclusions ["com/github/luxlang/luxc-jvm" +(def jar-exclusions ["com/github/luxlang/lux-bootstrapper" "org/clojure/clojure" "org/clojure/core.match" - ;; "org/ow2/asm/asm-all" - ]) + "org/ow2/asm/asm-all"]) ;; [Resources] (defn ^:private package-jvm diff --git a/lux-lein/src/leiningen/lux/utils.clj b/lux-lein/src/leiningen/lux/utils.clj index c18ea5a51..6ed549ae2 100644 --- a/lux-lein/src/leiningen/lux/utils.clj +++ b/lux-lein/src/leiningen/lux/utils.clj @@ -69,9 +69,6 @@ (.contains path (sanitize-path compiler-path)) (.contains path (sanitize-path jvm-compiler-path)))) -(defn ^:private filter-compiler-dependencies [jar-paths] - (filter compiler-dependency? jar-paths)) - (defn ^:private java-command [project] (str (get project :java-cmd "java") ;; " " (->> (get project :jvm-opts) (interpose " ") (reduce str "")) |