Author: rfeng
Date: Wed Sep 19 16:32:31 2007
New Revision: 577467

URL: http://svn.apache.org/viewvc?rev=577467&view=rev
Log:
Fix for TUSCANY-1752

Modified:
    incubator/tuscany/branches/sca-java-1.0/samples/quote-xquery/build.xml

Modified: incubator/tuscany/branches/sca-java-1.0/samples/quote-xquery/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0/samples/quote-xquery/build.xml?rev=577467&r1=577466&r2=577467&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0/samples/quote-xquery/build.xml 
(original)
+++ incubator/tuscany/branches/sca-java-1.0/samples/quote-xquery/build.xml Wed 
Sep 19 16:32:31 2007
@@ -38,8 +38,8 @@
                        <arg value="-targetDirectory" />
                        <arg value="target/sdo-source" />
                        <arg value="-noNotification" />
-                       <arg value="-noContainment" />
-                       <arg value="-noUnsettable" />
+                       <!-- Make sure the -noUnsettable is not used, 
otherwise, the SDO cannot be
+                       properly transformed to Node as some properties are 
treated as unset -->
                        <arg value="src/main/resources/wsdl/Quote.xsd" />
 
                        <classpath refid="project.classpath" />
@@ -48,8 +48,8 @@
                        <arg value="-targetDirectory" />
                        <arg value="target/sdo-source" />
                        <arg value="-noNotification" />
-                       <arg value="-noContainment" />
-                       <arg value="-noUnsettable" />
+                       <!-- Make sure the -noUnsettable is not used, 
otherwise, the SDO cannot be
+                       properly transformed to Node as some properties are 
treated as unset -->
                        <arg value="src/main/resources/wsdl/AvailQuote.xsd" />
 
                        <classpath refid="project.classpath" />
@@ -58,8 +58,8 @@
                        <arg value="-targetDirectory" />
                        <arg value="target/sdo-source" />
                        <arg value="-noNotification" />
-                       <arg value="-noContainment" />
-                       <arg value="-noUnsettable" />
+                       <!-- Make sure the -noUnsettable is not used, 
otherwise, the SDO cannot be
+                       properly transformed to Node as some properties are 
treated as unset -->
                        <arg value="src/main/resources/wsdl/PriceQuote.xsd" />
 
                        <classpath refid="project.classpath" />
@@ -69,7 +69,9 @@
 
 
        <target name="compile" depends="init, generate-sdo">
-               <javac srcdir="src/main/java" destdir="target/classes" 
debug="on" source="1.5" target="1.5">
+               <javac destdir="target/classes" debug="on" source="1.5" 
target="1.5">
+                   <src path="target/sdo-source"/>
+                   <src path="src/main/java"/>
                        <classpath refid="project.classpath" />
                </javac>
                <copy todir="target/classes">



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to