如何向project.clj添加多个许可证?

时间:2013-05-02 14:22:48

标签: clojure leiningen

如何为leiningen的project.clj添加多个许可证(我的项目是双重许可的)?

1 个答案:

答案 0 :(得分:0)

我知道它已经过期,但只是为了读者的利益而总结。该错误似乎已修复,请参阅https://github.com/technomancy/leiningen/issues/1166

以下project.clj适用于Java 1.7.0_09 Java HotSpot(TM)64位服务器VM上的Leiningen 2.2.0:

(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"}]
...