java - Retrieve deployable artifacts from maven hosted repository via a tool -
i'm trying automate of our processes @ work. give operations file listed war files needed deployed, have script download war files our maven repository. script deploy them "act" of downloading them i'd piggy off of.
i realize have script transpose names/groupid/artifactid/versions wget or http downloads, have maven download them pom file, or use groovy grape. however, imagine getting maven artifacts outside of maven lifecycle done , has written this.
i want them downloaded central folder wrapping script can call jboss-cli can deploy them. this:
deployfile.eachline{ **wantedtool**.download(it) /opt/jboss/bin/jboss-cli --connect deploy /opt/lib/... }
i'd prefer use tool in case rather invent need maintain.
thanks
Comments
Post a Comment