diff options
author | Eduardo Julian | 2016-12-04 23:40:25 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-12-04 23:40:25 -0400 |
commit | 7abe83784b9b63e8ac427ec3f21ff0b0850c72e2 (patch) | |
tree | 0124047fc0948441f8cbf443bb5d8812e6ece236 /lux-lein/src/leiningen | |
parent | c8128604f62d0d5223aad8f35f32b22ded7aa690 (diff) |
- No longer adding the LUX_JAR attribute to compiled JARs.
Diffstat (limited to 'lux-lein/src/leiningen')
-rw-r--r-- | lux-lein/src/leiningen/lux/packager.clj | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lux-lein/src/leiningen/lux/packager.clj b/lux-lein/src/leiningen/lux/packager.clj index dd037fe51..937af7d1c 100644 --- a/lux-lein/src/leiningen/lux/packager.clj +++ b/lux-lein/src/leiningen/lux/packager.clj @@ -34,7 +34,6 @@ (doto (-> (.put Attributes$Name/MAIN_CLASS (str module "._")) (->> (when (not includes-android?)))) (.put Attributes$Name/MANIFEST_VERSION "1.0") - (.put (new Attributes$Name "LUX_JAR") "true") (-> (.put (new Attributes$Name name) real-v) (->> (doseq [[name v] (get project :manifest) :let [real-v (if (string? v) v (v project))]]))))))) |