On Fri, May 20, 2011 at 5:02 PM, Freeman, Brian <[email protected]> wrote: > Here is my issue: I am currently using Maven with Nexus to save our build > artifacts. After we create the artifact and it has been deployed out to > Nexus I would like to run an Ant script that we use to publish the URL as > part of a build result.
Establish a property in the pom, and use it in both distributionManagement and the snippet where you need to publish it. You'll have to construct the download url by stringing together the groupId (with slashes instead of dots) the artifact Id and version. Most of that can be done with the available properties. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
