Added: webservices/muse/trunk/src/examples/client/maven.xml URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/client/maven.xml?rev=232376&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/client/maven.xml (added) +++ webservices/muse/trunk/src/examples/client/maven.xml Fri Aug 12 13:38:04 2005 @@ -0,0 +1,47 @@ +<?xml version="1.0"?>
+ +<!-- + For the definitions of Jelly tags, see these as reference + * http://jakarta.apache.org/commons/jelly/libs/ + * http://jakarta.apache.org/commons/jelly/tags.html +--> + +<project default="java:compile" + xmlns:j="jelly:core" + xmlns:util="jelly:util" + xmlns:maven="jelly:maven"> + + <!-- ================================================================== --> + <!-- CC : C H E C K O U T G O A L --> + <!-- ================================================================== --> + <!-- Checkout project from CVS. --> + <!-- Used by cruisecontrol. --> + <!-- ================================================================== --> + <goal name="cc:checkout"> + <mkdir dir="${maven.build.dir}/test-reports"/> + <property environment="env" /> + <!-- property file="${basedir}/internal-build.properties" / --> + <cvs command="update -d -P -C" + cvsRoot=":pserver:${env.CVS_USR}:[EMAIL PROTECTED]:/cvs" + dest="." + quiet="no" + /> + </goal> + + <postGoal name="dist:prepare-bin-filesystem"> + <attainGoal name="copy.dep" /> + </postGoal> + + <goal name="copy.dep" description="copy dependencies"> + <j:forEach var="dep" items="${pom.dependencies}"> + <copy file="${pom.getDependencyPath(dep.getId())}" + todir="${maven.build.dir}/${maven.final.name}/bin/${maven.final.name}/lib"/> + </j:forEach> + <copy todir="${maven.build.dir}/${maven.final.name}/bin/${maven.final.name}"> + <fileset dir="bin" /> + </copy> + + </goal> + +</project> + \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
