我忙着用常春藤弄湿我的脚。我在我的本地PC上运行了一个现有的nexus存储库,以及一个现有的ant构建脚本 两者都很好。
部分构建脚本有一些文件可以从网络共享中检索我们的第三方jar文件(log4j,xmlbeans,junit,pdf等等) - 最好是笨拙的。
我想使用ivy的依赖机制从nexus存储库中检索这些文件并在构建中使用它。每个3rdparty lib都有一个名称和一组任意文件(jar,dll,license.dat,xml等)。
由于我们有大量的这些第三方库并且每个lib都有多个文件 - 手动上传到nexus不是一个选项 - 我需要一些我可以用来获取一组文件,给它们一个lib名称,版本号并将结果上传到nexus。那么我需要能够从常春藤中找回它。
我设法让上传部分工作,但撤退过程不起作用。使用我们的xmlbeans lib作为起点,我创建了以下ivy.xml文件
<ivy-module version="1.0">
<info organisation="thirdparty_tools" module="xmlbeans" status="integration">
<publications>
<artifact name="jsr173_api" type="jar" ext="jar"/>
<artifact name="saxon-dom" type="jar" ext="jar"/>
<artifact name="saxon-xpath" type="jar" ext="jar"/>
<artifact name="saxon" type="jar" ext="jar"/>
<artifact name="xbean" type="jar" ext="jar"/>
<artifact name="xbean_xpath" type="jar" ext="jar"/>
<artifact name="xmlpublic" type="jar" ext="jar"/>
</publications>
</ivy-module>
然后将一些ant脚本发布到nexus:
<ivy:resolve/>
<ivy:publish <ivy:publish resolver="thirdparty" forcedeliver="true" update="true" revision="${version}" overwrite="true">
<artifacts pattern="[artifact].[ext]"/>
<ivy:publish/>
这一切都很好。它将所有jar文件发布到预期目录中的nexus。
当我尝试在构建中使用它时遇到了麻烦。 我为我的构建创建了以下ivy.xml文件:
<ivy-module version="1.0">
<info organisation="myCompany" module="GLB_Data"/>
<dependencies>
<dependency org="thirdparty_tools" name="xmlbeans" rev="2.2.0"/>
</dependencies>
</ivy-module>
然后当我运行我的构建时 - 它找不到任何东西:
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: thirdparty_tools#jsr173_api;2.2.0: not found
:: thirdparty_tools#saxon-dom;2.2.0: not found
:: thirdparty_tools#saxon-xpath;2.2.0: not found
:: thirdparty_tools#saxon;2.2.0: not found
:: thirdparty_tools#xbean;2.2.0: not found
:: thirdparty_tools#xbean_xpath;2.2.0: not found
:: thirdparty_tools#xmlpublic;2.2.0: not found
::::::::::::::::::::::::::::::::::::::::::::::
问题似乎与这种模式有关:
WARN: ==== public: tried
WARN: http //localhost:8081/nexus/content/groups/public/thirdparty_tools/jsr173_api/2.2.0/jsr173_api-2.2.0.pom
WARN: -- artifact thirdparty_tools#jsr173_api;2.2.0!jsr173_api.jar:
WARN: http //localhost:8081/nexus/content/groups/public/thirdparty_tools/jsr173_api/2.2.0/jsr173_api-2.2.0.jar
ivy seems to be looking for the jsr173_api artifact under its own name, rather than under the xmlbeans folder where it was published to:
[ivy:publish] published jsr173_api to http //localhost:8081/nexus/content/repositories/thirdparty/thirdparty_tools/xmlbeans/2.2.0/jsr173_api-2.2.0.jar
(网址混淆以防止意外发生)。
所以不知怎的,我需要以不同方式发布,或以不同方式检索。非常感谢您的想法和建议。
答案 0 :(得分:14)
Nexus主要是一个Maven存储库,这意味着必须适应Maven结构工件的方式。
由于您专注于批量加载Nexus,我建议您查看以下问题的答案:
Upload artifacts to Nexus, without Maven
如果你想坚持阅读常春藤.....
您的第一个问题是您的Maven模块需要一个POM文件。此文件描述了maven模块,可以从 ivy.xml 文件的内容轻松生成(请参阅下面的解决方案)。
其次,Maven假设正在构建一个主要工件。例如:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.myspotontheweb</groupId>
<artifactId>donaldduck</artifactId>
<version>1.0.1</version>
<packaging>txt</packaging>
</project>
Maven客户端会将此信息转换为以下网址:
http://<host>/<repo>/com/myspotontheweb/donaldduck/1.0.1/donaldduck-1.0.1.txt
这演示了Nexus如何存储任何类型的二进制依赖项。 packaging 参数默认为“jar”。
虽然Maven专注于单个构建工件,但可以通过将它们发布到同一目录(如您所做)来添加其他补充工件。
这些是Maven POM中列出的不。相反,Maven使用特殊的“分类器”属性。以下是可能的依赖声明。
<dependency>
<groupId>com.myspotontheweb</groupId>
<artifactId>donaldduck</artifactId>
<version>1.0.1</version>
<classifier>metadata</classifier>
<type>n3</type>
</dependency>
Maven客户端会将其转换为以下网址:
http://<host>/<repo>/com/myspotontheweb/donaldduck/1.0.1/donaldduck-1.0.1-metadata.n3
开源项目通常以这种方式发布源代码。
所以终于如何使用常春藤将文件发布到Nexus?
首先确定哪个工件是“主”构建工件,并为您的POM文件添加其他条目:
<ivy-module version='2.0' xmlns:e="http://ant.apache.org/ivy/extra">
<info organisation="com.myspotonontheweb" module="donaldduck" revision="1.0.1"/>
<publications>
<artifact name="donaldduck" type="txt"/>
<artifact name="donaldduck" type="pom"/>
<artifact name="donaldduck" type="n3" e:classifier="metadata"/>
<artifact name="donaldduck" type="zip" e:classifier="disto"/>
</publications>
</ivy-module>
还可以列出其他文件,但每个文件都必须具有唯一的分类器属性.....在这里,您将面临将ANT项目转换为Maven的一个经典问题...您发布的每个jar文件可能都需要一个单独的POM。它们不是真正的“补充”文物......
假装您不需要发布多个模块....使用以下构建目标来发布您的模块:
<target name="prepare" description="Generate POM">
<!-- Optional: Intermediate file containing resolved version numbers -->
<ivy:deliver deliverpattern="${build.dir}/ivy.xml" pubrevision="${publish.revision}" status="release"/>
<!-- Generate the Maven POM -->
<ivy:makepom ivyfile="${build.dir}/ivy.xml" pomfile="${build.dir}/donaldduck.pom"/>
</target>
<target name="publish" depends="init,prepare" description="Upload to Nexus">
<ivy:publish resolver="nexus-deploy" pubrevision="${publish.revision}" overwrite="true" publishivy="false" >
<artifacts pattern="${build.dir}/[artifact](-[classifier]).[ext]"/>
</ivy:publish>
</target>
为了完整起见,这里是包含Nexus存储库位置和凭据的 ivysettings.xml 文件:
<ivysettings>
<settings defaultResolver="nexus-central"/>
<credentials host="somehost" realm="Sonatype Nexus Repository Manager" username="????" passwd="????"/>
<resolvers>
<ibiblio name="nexus-central" root="http://somehost/nexus/content/repositories/central/" m2compatible="true"/>
<ibiblio name="nexus-deploy" root="http://somehost/nexus/content/repositories/repo" m2compatible="true"/>
</resolvers>
</ivysettings>
要检索所有已发布的工件(而不仅仅是主工件),您需要按以下方式列出它们:
<dependency org="com.myspotontheweb" name="donaldduck" rev="1.0.1">
<artifact name="donaldduck" type="txt"/>
<artifact name="donaldduck" type="n3" e:classifier="metadata"/>
<artifact name="donaldduck" type="zip" e:classifier="distro"/>
</dependency>
功能与以下Maven片段相同:
<dependency>
<groupId>com.myspotontheweb</groupId>
<artifactId>donaldduck</artifactId>
<version>1.0.1</version>
<type>txt</type>
</dependency>
<dependency>
<groupId>com.myspotontheweb</groupId>
<artifactId>donaldduck</artifactId>
<version>1.0.1</version>
<classifier>metadata</classifier>
<type>n3</type>
</dependency>
<dependency>
<groupId>com.myspotontheweb</groupId>
<artifactId>donaldduck</artifactId>
<version>1.0.1</version>
<classifier>distro</classifier>
<type>zip</type>
</dependency>