我在项目中使用Ant + Ivy + Artifactory,我尝试发布自己的存储库,我的build.xml是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<project name="hello-world-ant" basedir="." default="main" xmlns:ivy="antlib:org.apache.ivy.ant">
<!-- Ant properties -->
<property name="src.dir" value="src"/>
<property name="lib.dir" value="lib"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="main-class" value="com.eureka.HelloWorld"/>
<ivy:settings file="./ivysettings.xml" />
<target name="clean">
<delete dir="${build.dir}"/>
<delete dir="${lib.dir}"/>
</target>
<target name="resolve">
<ivy:retrieve/>
</target>
<target name="report" depends="resolve">
<ivy:report todir="${build.dir}"/>
</target>
<target name="compile" depends="report">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
</target>
<target name="ivy">
<ivy:resolve />
<!-- Possible ivy:report, ivy:retrieve and other
elements for managing your dependencies go here -->
<ivy:deliver conf="*(public)"/>
</target>
<target name="publish" depends="jar">
<ivy:retrieve/>
<ivy:publish resolver="publish" overwrite="true" artifactspattern="${jar.dir}/[artifact].[ext]" />
</target>
<target name="clean-build" depends="clean,jar"/>
<target name="main" depends="clean,run"/>
</project>
和我的ivysettings.xml是这样的:
<credentials host="localhost" realm="Artifactory Realm" username="admin" passwd="password" />
<resolvers>
<chain name="main">
<ibiblio name="artifactory" m2compatible="true" root="http://localhost:8081/artifactory/libs-releases" />
<url name="publish">
<!-- You can use m2compatible="true" instead of specifying your own pattern -->
<ivy pattern="http://localhost:8081/artifactory/test-snapshot-local/[organization]/[module]/[revision]/ivy-[revision].xml" />
<artifact pattern="http://localhost:8081/artifactory/test-snapshot-local/[organization]/[module]/[revision]/[artifact].[ext]"/>
</url>
</chain>
当我执行ant
时没有问题,但当我ant publish
时,它会显示问题:
BUILD FAILED
/Users/stage/Documents/workspace/test_ivy/build.xml:56: impossible to publish artifacts for org.apache#hello-ivy;working@pro-de-support.density.fr: java.io.IOException: missing artifact org.apache#hello-ivy;20140401102841!hello-ivy.jar
我是使用这些工具的新手,我想知道这里发生了什么......非常感谢〜
答案 0 :(得分:3)
假设您使用常春藤快速入门教程中提到的 hello-ivy 示例,ivy.xml
中定义的模块是 hello-ivy 而项目您正在使用的名称是 hello-world-ant
用于发布的artifactspattern
为${jar.dir}/[artifact].[ext]
,这意味着当您的构建正在创建名为hello-ivy.jar
(hello-world-ant.jar
)的jar时,Ivy会查找${ant.project.name}.jar
。
将ivy.xml
中的模块更改为&#34; hello-world-ant&#34;将解决这个问题。