clojure - How to add multiple licenses to project.clj? -
how add more 1 license leiningen's project.clj (my project dually licensed)?
i know overdue, summary benefit of readers. bug appears fixed, see https://github.com/technomancy/leiningen/issues/1166
the following project.clj
works me on leiningen 2.2.0 on java 1.7.0_09 java hotspot(tm) 64-bit server vm:
(defproject justatest "0.1.0-snapshot" :description "fixme: write description" :url "http://example.com/fixme" :licenses [{:name "eclipse public license" :url "http://www.eclipse.org/legal/epl-v10.html"} {:name "example license" :url "http://example.com"}] ...
Comments
Post a Comment