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.
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:
The ivy file src/ivy.xml details the name of the module and a list of the artifacts being published. (Release index)
You’ll also need an ivy settings file to tell ivy where the repository is located
Finally run ivy to publish the released version 1.0:
Note the publish pattern. It tells ivy where the files to be published are located.
Added: Publishing from within ANT