You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by rg...@apache.org on 2010/10/19 17:54:00 UTC

svn commit: r1024290 - /incubator/wookie/trunk/widgets/build.xml

Author: rgardler
Date: Tue Oct 19 15:54:00 2010
New Revision: 1024290

URL: http://svn.apache.org/viewvc?rev=1024290&view=rev
Log:
Fix some path issues. No longer deploying automatically as the paths are not being set correctly. Need to fix this one day, for now building and deploying a test widget is a two stage process.

Modified:
    incubator/wookie/trunk/widgets/build.xml

Modified: incubator/wookie/trunk/widgets/build.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/widgets/build.xml?rev=1024290&r1=1024289&r2=1024290&view=diff
==============================================================================
--- incubator/wookie/trunk/widgets/build.xml (original)
+++ incubator/wookie/trunk/widgets/build.xml Tue Oct 19 15:54:00 2010
@@ -16,6 +16,7 @@
   limitations under the License.
 -->
 <project default="build-widget" basedir="." name="Wookie_widgets_build_file">
+	<property name="project.build.dir" location="../build"/>
 	<property name="wookie.widgets.dir" location="."/>
 	<property name="widget.template.dir" value="${wookie.widgets.dir}/widget-template"/>
     <property name="widget.build.dir" value="${project.build.dir}/widgets"/>
@@ -47,15 +48,14 @@
     	<antcall target="_create-widget-from-template"/>
     </target>   
 	
-	<target name="build-test-widget" description="Build and deploy a test widget that uses sensible settings. This is used when developing the widget template scripts.">
-	  	<property name="deployToDev" value="true"/>
+	<target name="build-test-widget" description="Build a test widget that uses sensible settings. This is used when developing the widget template scripts.">
+		<property name="deployToDev" value="true"/>
 		<property name="widget.shortname" value="TemplateTest"/>
 		<property name="widget.description" value="A widget built from the standard widget template and using sensible default options for all configuration settings. This is used during development of the widget template"/>
 		<property name="widget.height" value="320"/>
 		<property name="widget.width" value="200"/>
 		<antcall target="_create-widget-from-template"/>
 		<antcall target="build-widget"/>
-		<antcall target="deploy-widget"/>
 	</target>
     	
     <target name="_create-widget-from-template" description="Copies the widget template and configures it accordingly.">