Webapp build.xml files have outdated list of dependencies ---------------------------------------------------------
Key: TUSCANY-1733 URL: https://issues.apache.org/jira/browse/TUSCANY-1733 Project: Tuscany Issue Type: Bug Affects Versions: Java-SCA-1.0 Reporter: Jean-Sebastien Delfino Priority: Critical Fix For: Java-SCA-1.0 Most of the webapp build.xml files have outdated lists of dependencies, as they have been created by hand. We should go through them a update the zipfilesets listing the tuscany JARs and external dependencies to match exactly what we have in the WARs built by Maven. If that helps, here are Linux commands that can be used to generate these lists: the tuscany jars jar tvf sample-feed-aggregator-webapp.war | grep .jar | awk '{ printf "%s\n", $8 }' | sed -e "s/WEB-INF\/lib\///" | awk '{ printf "<include name=\"%s\"/>\n", $1 }' | grep tuscany the external jars jar tvf sample-feed-aggregator-webapp.war | grep .jar | awk '{ printf "%s\n", $8 }' | sed -e "s/WEB-INF\/lib\///" | awk '{ printf "<include name=\"%s\"/>\n", $1 }' | grep -v tuscany -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]