Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone point me at a good tutorial for making & using a local repository with Ivy? (Please don't point me at the Ivy docs, the tutorials are rather confusing)

I need to make a local repository to include .jar files that aren't necessarily available through the public maven repositories.

share|improve this question
I don't think there are many proper tutorials around. For .jars that aren't in the public maven repositories you can use the <publish/> task. In practice I've found it easier to simply copy the .jars in the proper spots and to hand-edit the ivy.xml files. – leonm Sep 20 '09 at 2:41
Interesting question. Our local Ivy repo was organically built up over years, and it's a mess. – skaffman Feb 17 '10 at 9:51
3  
+1 for "Please don't point me at the Ivy docs, the tutorials are rather confusing". I'm finding it extremely difficult to learn how to do basic things in Ivy. – jwaddell Sep 1 '11 at 0:19

5 Answers

up vote 26 down vote accepted

Creating a local ivy repository is straight forward, maven is not required. Here's an example of publishing some text files using ivy as a standalone program.

I have 3 files I want to publish:

src/English.txt
src/Spanish.txt
src/Irish.txt

The ivy file src/ivy.xml details the name of the module and a list of the artifacts being published. (Release index)

<ivy-module version="2.0">
  <info organisation="myorg" module="hello"/>
  <publications>
    <artifact name="English" ext="txt" type="doc"/>
    <artifact name="Irish" ext="txt" type="doc"/>
    <artifact name="Spanish" ext="txt" type="doc"/>
  </publications>
</ivy-module>

You'll also need an ivy settings file to tell ivy where the repository is located

<ivysettings>
    <property name="repo.dir" value=".../repo"/>
    <settings defaultResolver="internal"/>
    <resolvers>
        <filesystem name="internal">
            <ivy pattern="${repo.dir}/[module]/ivy-[revision].xml" />
            <artifact pattern="${repo.dir}/[module]/[artifact]-[revision].[ext]" />
        </filesystem>
    </resolvers>
</ivysettings>

Finally run ivy to publish the released version 1.0:

java -jar $IVY -settings config/ivysettings.xml \
        -ivy src/ivy.xml \
        -publish internal \
        -publishpattern "src/[artifact].[ext]" \
        -revision 1.0 \
        -status release \
        -overwrite 

Note the publish pattern. It tells ivy where the files to be published are located.

Added: Publishing from within ANT

<target name="publish" depends="clean,package" description="Publish this build into repository">
    <ivy:publish pubrevision="${pub.version}" status="${pub.status}" resolver="${pub.resolver}" >
        <artifacts pattern="${build.dir}/dist/[artifact].[ext]"/>
    </ivy:publish>
</target>
share|improve this answer
Nice answer! Do you know where we can get the same 'publish' information in an Ant task? The "official" documentation of the tasks is confusing. – Ralph Oct 1 '10 at 11:24
1  
Yes, I use the ivy publish task all the time, publishing to my Nexus Maven repository. What's missing really on the ivy site is more example documentation. I find it's fine for reference once you've figured out how ivy works :-( – Mark O'Connor Oct 1 '10 at 19:23
3  
Don't say it is easy, because it is not. If it would be easy, I would have found out myself how to do it. – Arne Nov 25 '10 at 13:18
1  
Point taken. Maven is no walk in the part either :-) – Mark O'Connor Nov 30 '10 at 19:53

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

share|improve this answer

don't know if you're using SVN, if this is the case this may help:

http://code.google.com/p/ivysvn/

share|improve this answer
thanks, I'm not looking for software tools, just want to learn how to use the ones I have. – Jason S Jul 29 '09 at 14:50

It has been a while and IBM Developerworks put together a pretty good tutorial article: http://www.ibm.com/developerworks/java/library/j-ap05068/index.html

share|improve this answer

What you may want to look at doing is creating a private maven repository, either on your local machine, or in your intranet. Then deploy these non-public resources to that repository using maven. Ivy integrates with maven repositories, so you will be able to then pull these resources in during compile time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.