I'm trying to get Artifactory (OSS version) up-and-running for the first time and have successfully created a repo and deployed an artifact (joda-time-2.0) to it as a test.
But when it comes to the Ivy module descriptors (XML files), I'm a little confused:
- What should I name the XML files? The default artifact pattern I'm using is
[org]/[module]/[baseRev](-[folderItegRev])/[type]s/[module](-[classifier])-[baseRev](-[fileItegRev]).[ext]which prompted Artifactory to store my joda JAR tomyRepo/joda-time/joda-time/2.0; the module pattern is[org]/[module]/[baseRev](-[folderItegRev])/[type]s/ivy-[baseRev](-[fileItegRev]).xml, so should my descriptor be namedivy-2.0.xml? - Shouldn't Artifactory have stored
joda-time-2.0.jarundermyRepo/joda/joda-time/2.0/? Sincejodais the org, notjoda-time? How do I change this? - How do I upload the Ivy file into the repo? If I name the file
ivy-2.0.xmlthen how will Artifactory know to place it in the JODA directory?
Thanks in advance!