You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/10/24 07:16:11 UTC

svn commit: r587793 - in /incubator/tuscany/branches/sca-java-1.0.1/samples: pom.xml quote-xquery/build.xml

Author: rfeng
Date: Tue Oct 23 22:16:10 2007
New Revision: 587793

URL: http://svn.apache.org/viewvc?rev=587793&view=rev
Log:
Add two missing updates

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

Modified: incubator/tuscany/branches/sca-java-1.0.1/samples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0.1/samples/pom.xml?rev=587793&r1=587792&r2=587793&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0.1/samples/pom.xml (original)
+++ incubator/tuscany/branches/sca-java-1.0.1/samples/pom.xml Tue Oct 23 22:16:10 2007
@@ -56,9 +56,10 @@
                 <module>helloworld-dojo-webapp</module>
                 <module>helloworld-jsonrpc-webapp</module>
                 <module>helloworld-ws-service</module>
-		<module>helloworld-ws-service-secure</module>
+                <module>helloworld-ws-service-secure</module>
                 <module>helloworld-ws-reference</module>
-		<module>helloworld-ws-reference-secure</module>
+                <module>helloworld-ws-reference-jms</module>
+                <module>helloworld-ws-reference-secure</module>
                 <module>helloworld-ws-sdo</module>
                 <module>helloworld-ws-sdo-webapp</module>
                 <module>implementation-composite</module>

Modified: incubator/tuscany/branches/sca-java-1.0.1/samples/quote-xquery/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.0.1/samples/quote-xquery/build.xml?rev=587793&r1=587792&r2=587793&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.0.1/samples/quote-xquery/build.xml (original)
+++ incubator/tuscany/branches/sca-java-1.0.1/samples/quote-xquery/build.xml Tue Oct 23 22:16:10 2007
@@ -17,104 +17,104 @@
  * under the License.    
 -->
 <project name="sample-quote-xquery" default="compile">
-	<property name="test.class" value="xquery.quote.XQueryQuoteClient" />
-	<property name="test.server.class" value="xquery.quote.XQueryQuoteServer" />
-	<property name="test.jar" value="sample-quote-xquery.jar" />
-
-	<target name="init">
-		<mkdir dir="target/classes" />
-	</target>
-
-	<property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar" />
-
-	<path id="project.classpath">
-		<pathelement path="target/classes" />
-		<pathelement path="target/sdo-source" />
-		<pathelement location="${tuscany.sca.manifest.location}" />
-	</path>
-
-	<target name="generate-sdo" depends="init">
-		<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
-			<arg value="-targetDirectory" />
-			<arg value="target/sdo-source" />
-			<arg value="-noNotification" />
-			<!-- 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" />
-		</java>
-		<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
-			<arg value="-targetDirectory" />
-			<arg value="target/sdo-source" />
-			<arg value="-noNotification" />
-			<!-- 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" />
-		</java>
-		<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
-			<arg value="-targetDirectory" />
-			<arg value="target/sdo-source" />
-			<arg value="-noNotification" />
-			<!-- 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" />
-		</java>
-
-	</target>
-
-
-	<target name="compile" depends="init, generate-sdo">
-		<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">
-			<fileset dir="src/main/resources" />
-		</copy>
-		<jar destfile="target/${test.jar}" basedir="target/classes">
-			<manifest>
-				<attribute name="Main-Class" value="${test.class}" />
-			</manifest>
-		</jar>
-
-	</target>
-
-	<target name="run-classes">
-		<java classname="${test.class}" fork="true">
-			<classpath>
-				<pathelement path="target/classes" />
-			</classpath>
-			<classpath refid="project.classpath" />
-		</java>
-	</target>
-
-	<target name="run">
-		<java classname="${test.class}" fork="true">
-			<classpath>
-				<pathelement path="target/${test.jar}" />
-			</classpath>
-			<classpath refid="project.classpath" />
-		</java>
-	</target>
-
-	<target name="run-server">
-		<java classname="${test.server.class}" fork="true">
-			<classpath>
-				<pathelement path="target/${test.jar}" />
-			</classpath>
-			<classpath refid="project.classpath" />
-		</java>
-	</target>
-
-	<target name="clean">
-		<delete quiet="true" includeemptydirs="true">
-			<fileset dir="target" />
-		</delete>
-	</target>
+    <property name="test.class" value="xquery.quote.XQueryQuoteClient" />
+    <property name="test.server.class" value="xquery.quote.XQueryQuoteServer" />
+    <property name="test.jar" value="sample-quote-xquery.jar" />
+
+    <target name="init">
+        <mkdir dir="target/classes" />
+    </target>
+
+    <property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar" />
+
+    <path id="project.classpath">
+        <pathelement path="target/classes" />
+        <pathelement path="target/sdo-source" />
+        <pathelement location="${tuscany.sca.manifest.location}" />
+    </path>
+
+    <target name="generate-sdo" depends="init">
+        <java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
+            <arg value="-targetDirectory" />
+            <arg value="target/sdo-source" />
+            <arg value="-noNotification" />
+            <!-- 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" />
+        </java>
+        <java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
+            <arg value="-targetDirectory" />
+            <arg value="target/sdo-source" />
+            <arg value="-noNotification" />
+            <!-- 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" />
+        </java>
+        <java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
+            <arg value="-targetDirectory" />
+            <arg value="target/sdo-source" />
+            <arg value="-noNotification" />
+            <!-- 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" />
+        </java>
+
+    </target>
+
+
+    <target name="compile" depends="init, generate-sdo">
+        <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">
+            <fileset dir="src/main/resources" />
+        </copy>
+        <jar destfile="target/${test.jar}" basedir="target/classes">
+            <manifest>
+                <attribute name="Main-Class" value="${test.class}" />
+            </manifest>
+        </jar>
+
+    </target>
+
+    <target name="run-classes">
+        <java classname="${test.class}" fork="true">
+            <classpath>
+                <pathelement path="target/classes" />
+            </classpath>
+            <classpath refid="project.classpath" />
+        </java>
+    </target>
+
+    <target name="run">
+        <java classname="${test.class}" fork="true">
+            <classpath>
+                <pathelement path="target/${test.jar}" />
+            </classpath>
+            <classpath refid="project.classpath" />
+        </java>
+    </target>
+
+    <target name="run-server">
+        <java classname="${test.server.class}" fork="true">
+            <classpath>
+                <pathelement path="target/${test.jar}" />
+            </classpath>
+            <classpath refid="project.classpath" />
+        </java>
+    </target>
+
+    <target name="clean">
+        <delete quiet="true" includeemptydirs="true">
+            <fileset dir="target" />
+        </delete>
+    </target>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org