3

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

4

1 回答 1

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"}]
...
于 2013-09-07T19:58:34.917 回答