You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by el...@apache.org on 2009/10/07 14:47:13 UTC

svn commit: r822700 - /incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml

Author: elman
Date: Wed Oct  7 12:47:13 2009
New Revision: 822700

URL: http://svn.apache.org/viewvc?rev=822700&view=rev
Log:
fix scripts according to a new zip distribution format.
See [WINK-183] for more details about the new format.

Modified:
    incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml

Modified: incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml?rev=822700&r1=822699&r2=822700&view=diff
==============================================================================
--- incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml (original)
+++ incubator/wink/trunk/wink-examples/client/GoogleDocs-client/build.xml Wed Oct  7 12:47:13 2009
@@ -34,6 +34,7 @@
 	<property name="build.classes" location="${build}/classes" />
 	<property name="client.base" location="${basedir}/../../.." />
 	<property name="client.lib" location="${client.base}/lib" />
+	<property name="examples.lib" location="${client.base}/examples/lib" />
 	<property name="client.dist" location="${client.base}/dist" />
 	<property name="client.jar" location="${client.dist}/${client.jar.name}" />
 	<property name="common.jar" location="${client.dist}/${common.jar.name}" />
@@ -43,8 +44,6 @@
 
 
 	<target name="init">
-		<!-- Create the time stamp -->
-		<tstamp />
 		<!-- Create the build directory structure used by compile -->
 		<mkdir dir="${build.classes}" />
 	</target>
@@ -54,6 +53,7 @@
 		<!-- Set classpath for client lib -->
 		<path id="client.classpath">
 			<fileset dir="${client.lib}" includes="**/*.jar" />
+			<fileset dir="${examples.lib}" includes="commons-cli-1.2.jar" />
 			<pathelement path="${common.jar}" />
 			<pathelement path="${client.jar}" />
 		</path>
@@ -67,6 +67,7 @@
 	<target name="dist" depends="compile" description="generate the distribution">
 		<manifestclasspath property="jar.classpath" jarfile="${example.jar}" maxParentLevels="10">
 			<classpath>
+				<fileset dir="${examples.lib}" includes="commons-cli-1.2.jar" />
 				<fileset dir="${client.lib}" includes="*.jar" />
 				<fileset dir="${client.lib}/examples" includes="*.jar" />
 				<fileset dir="${client.dist}">