> Someone I work with needs to build an automated solution to get the latest > version of a snapshot jar from our nexus server. They've tried the simplistic > "wget/curl" solution, but that requires hardcoding the verbose snapshot jar > url. > What are cleaner ways to do this? ... > Is this something that the Wagon plugin can do?
I would probably use the Eclipse Aether API (incubating) to do this. Look at this sample code: http://git.eclipse.org/c/aether/aether-demo.git/tree/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/FindNewestVersion.java Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
