我很难理解如何安装或部署jar文件及其附带的源(或任何其他分类器)。 documentation对我来说并不清楚,让我做了一些试验和错误。
答案 0 :(得分:0)
以下是如何将分类器与maven ant run任务一起使用的示例:
<target name="install-jar">
...
<artifact:pom id="sharedPom" file="shared/pom.xml" />
<artifact:install file="${classesdir}/shared.jar" >
<pom refid="sharedPom" />
<attach file="${builddir}/shared-sources.jar" classifier="sources" />
</artifact:install>
</target>
documentation中引用的附件意味着是一个子元素。希望这会有所帮助。