[282331] Ant build script for generating GMF diagram editors - prototype updated
diff --git a/plugins/org.eclipse.gmf.xpand.ant/examples/gmfgen-run.xml b/plugins/org.eclipse.gmf.xpand.ant/examples/gmfgen-run.xml
index f5aebe4..d1fe5e8 100644
--- a/plugins/org.eclipse.gmf.xpand.ant/examples/gmfgen-run.xml
+++ b/plugins/org.eclipse.gmf.xpand.ant/examples/gmfgen-run.xml
@@ -6,11 +6,11 @@
   	<!-- 1. Generate Ant build.xml for specific gmfgen model -->
   	<tempfile property="generated-build-file" prefix="gmfgen-build" suffix=".xml"/>
     <xpt:template name="impl::build::antbuild::Main" 
-      inputURI="$input-gmfgen-model-uri" 
+      inputURI="${input-gmfgen-model-uri}" 
 	  templateroot="platform:/plugin/org.eclipse.gmf.codegen/templates/"
-	  outfile="$generated-build-file"/>
+	  outfile="${generated-build-file}"/>
   	<!-- 2. Execute generated script to produce diagram editor plug-in -->
-  	<ant antfile="$generated-build-file"/>
+  	<ant antfile="${generated-build-file}"/>
   </target>
 
 </project>