This example explains how artifacts of different types (jar, javadoc, source etc.) can be published to local repository. Example uses Ivy's Publish Ant task.
We want to publish module named xyzutil developed by us to local repository. Xyzutil has three artifacts
- xyzutil-jar.jar
- xyzutil-source.jar
- xyzutil-javadoc.jar
Place these three jars in a directory and add following ivy.xml to that dir.
<ivy-module version="2.0">
<info organisation="com.xyz" module="xyzutil" />
<publications>
<artifact name="xyzutil" type="jar" ext="jar"/>
<artifact name="xyzutil" type="javadoc" ext="jar"/>
<artifact name="xyzutil" type="source" ext="jar"/>
</publications>
</ivy-module>
Info element provides module name and organization. Publications element enumerates artifacts of the module, their types and file ext .
As we want to use Ant to publish add, following build.xml to that dir.
<project name="xyzutil" default="publish" xmlns:ivy="antlib:org.apache.ivy.ant">
<target name="publish" description="Publish to local repository">
<ivy:resolve/>
<ivy:publish pubrevision="1.0" status="release"
resolver="local" overwrite="true" >
<artifacts pattern="[artifact]-[type].[ext]"/>
</ivy:publish>
</target>
</project>
In publish task we are using Ivy Built-in resolver named local. It points to repository located at $HOME/.ivy2/local.
Artifacts pattern is [artifact]-[type].[ext] as all three artifacts follow this pattern. Ivy uses this pattern only to search the artifacts defined in ivy.xml. In case artifacts are named differently then you have to adjust this pattern accordingly. Else Ivy will not be able to find the artifacts for publication.
Now run Ant to publish the module. Ivy will create a repository at $HOME/.ivy2/local (if it is not there) and publish xyzutil to it.
For a detailed explanation on Repositories refer to a tutorial from my blog Apache Ivy - Beginners Tutorial