Merge pull request #1628 from paxan/patch-1

How to opt out from "Main-Class: clojure.main"
This commit is contained in:
Phil Hagelberg 2014-08-06 19:29:59 -07:00
commit 2a3fe249c0

View file

@ -190,7 +190,9 @@
;; metadata to the namespace symbol. ^:skip-aot will not disable AOT
;; compilation of :main when :aot is :all or contains the main class. It's
;; best to be explicit with the :aot key rather than relying on
;; auto-compilation of :main.
;; auto-compilation of :main. Setting :main to nil is useful when a
;; project contains several main functions. nil will produce a jar
;; with manifest.mf that lacks `Main-Class' property.
:main my.service.runner
;; Support project-specific task aliases. These are interpreted in
;; the same way as command-line arguments to the lein command. If