欢迎!请参阅 关于 页面以获取更多关于此功能的信息。
由于 Clojars 需要许可证,需要上传的项目需要在它们的 jar 项目的 pom 文件中添加许可证块。使用 build.tools,可以创建 pom.xml 文件,手动修改它以包括许可证部分,然后使用该 pom 创建 jar,但这需要手动操作。
是否有计划为 write-pom(和 gen-pom)添加选项,以允许程序性地插入许可证?
write-pom
gen-pom
tools.build v0.9.6 现在包含一个额外的 :pom-data 属性,可以用来以 hiccup 风格提供许可证(以及任何其他 pom 数据),并将其放入生成的 pom 文件中。
文档: https://clojure.github.io/tools.build/clojure.tools.build.api.html#var-write-pom
示例
(b/write-pom ... :pom-data [[:licenses [:license [:name "Eclipse Public License 1.0"] [:url "https://opensource.org/license/epl-1-0/";] [:distribution "repo"]]]])
write-pom 已经可以使用“模板” pom.xml 文件来生成最终的、上传的 pom.xml 文件。这就是 deps-new 和 clj-new 生成的方式——参见该模板文件的源码
pom.xml
deps-new
clj-new
https://github.com/seancorfield/deps-new/blob/develop/resources/org/corfield/new/lib/root/template/pom.xml
这也是我在我的开源项目中处理此问题的方法,比如 next.jdbc
next.jdbc
https://github.com/seancorfield/next-jdbc/blob/develop/template/pom.xml
和
https://github.com/seancorfield/next-jdbc/blob/develop/build.clj#L45
我认为不应当在 tools.build 中添加 :license 选项 -- 上传的 pom.xml 文件中“应该”包含许多其他字段,而 write-pom 同样省略了这些字段,:src-pom 选项允许您提供所有这些。
tools.build
:license
:src-pom
我认为更多的文档应该推荐使用一个“模板” pom.xml 文件(我将更新 clojure-doc.org 关于 tools.build 的说明以反映这一点)。